© 2026 Clarivate
GET /api/.../bibliographicrecords/{id}/items
Get the items attached to a Bibliographic Record. The default item format is summary and is intended for displaying items in list view. The other item format is info and is primarily intended for 3rd party integration (e.g. NLB).
| Name | Type | Required | Description |
|---|---|---|---|
| id | Integer | Yes | Bibliographic Record ID |
| countOnly | Boolean | No | True returns a count of linked items. False returns a list of linked items. Default is false. |
| format | ItemFormat | No | Default is ItemFormat.Summary. |
| pageRequest | DtoItemPageRequest | No | Page request information. |
| Name | Type | Required | Description |
|---|---|---|---|
| Limit | Integer | No | Size of results page. |
| Offset | Integer | No | Offset into the paged data set. Initially 0 to begin on first page of results. |
| PitID | Integer | No | Point-in-time ID representing the snapshot of data for this query. Initially 0 for new queries. (Set ID) |
| LocationCode | String | No | Location code to filter items by location. |
| FilterFlags | List<ItemPageRequestFilterFlags> | No | List of filter flags to apply to the item results. |
| SortOption1 | ItemPageRequestSortOption | No | Primary sort option for the results. |
| SortOption2 | ItemPageRequestSortOption | No | Secondary sort option for the results. |
| VolumeNumber | String | No | Filter items by volume number. |
| CollectionCode | String | No | Collection code to filter items by collection. |
[
{
"ItemRecordID": 1472272,
"AssignedBranch": "Johnstown Public Library",
"Barcode": "0001200231049",
"CallNumber": "327.73 K61am2",
"Collection": "Adult Nonfiction (ANF)",
"ControlNumber": 1472272,
"Designation": null,
"DueDate": "2017-02-14T23:59:59-05:00",
"LastCircTransactionDate": "2010-01-29T13:03:27.11-05:00",
"LoanUnits": 1,
"MaterialType": "Book",
"RecordStatus": "Final",
"ShelfLocation": "",
"Status": "Lost",
"Title": "American military strategy : memos to a president",
"Volume": null
},
{
"ItemRecordID": 316352,
"AssignedBranch": "Stillwater Public Library",
"Barcode": "0000400814646",
"CallNumber": "B MAILER MIL",
"Collection": "Adult Nonfiction (ANF)",
"ControlNumber": 316352,
"Designation": null,
"DueDate": "2024-04-15T23:59:59-04:00",
"LastCircTransactionDate": "2024-03-25T11:45:00-04:00",
"LoanUnits": 1,
"MaterialType": "Book",
"RecordStatus": "Final",
"ShelfLocation": "Front Lobby",
"Status": "Out",
"Title": "American military strategy : memos to a president",
"Volume": "v. 1"
},
{
"ItemRecordID": 789456,
"AssignedBranch": "East Branch Library",
"Barcode": "0002100456789",
"CallNumber": "327.73 K61am2 c.2",
"Collection": "Reference",
"ControlNumber": 789456,
"Designation": "REF",
"DueDate": null,
"LastCircTransactionDate": "2023-12-15T14:22:00-05:00",
"LoanUnits": 0,
"MaterialType": "Book",
"RecordStatus": "Final",
"ShelfLocation": "Reference Desk",
"Status": "In",
"Title": "American military strategy : memos to a president",
"Volume": null
}
]
| Code | Description |
|---|---|
| 200 | OK. Success |
| 404 | id is invalid |