Magazine Issues API
The Magazine Issues API delivers a list of issues for a magazine in your collection, including the most recent issue and any available prior issues.
Accessing the Magazine Issues API
The Magazine Issues API can return some or all issues for a specific magazine. Results are returned as a paginated JSON response based on the query parameters you provide. All you need to start is a products link from the Library or Retailer Account API.
Resource URL
https://api.overdrive.com/v1/collections/{collectionToken}/products/{product ID}/issues?{parameters}
Note: You can find the products link, including the collectionToken, by accessing the Library or Retailer API.
Query parameters
These parameters determine which magazine to display, how many issues to display, and how results are sorted.
identifier | Search by a magazine's catalog number. This parameter can accept a comma-separated list of identifiers. |
crossRefId | Search by crossRefId, the unique integer used to construct URLs on new OverDrive library websites and overdrive.com. For example: www.overdrive.com/media/5997637, where 5997637 is this title's crossRefId. This parameter can accept only one crossRefId. |
reserveId | Search by a magazine's reserveId. This value is not case-sensitive. |
limit | Limits the number of issues shown per page. By default, results will be limited to 25 issues per page with a maximum of 2,000 issues. |
offset | Offsets your returned results. Using a value of 20 means that your results start on the 21st issue in the collection, omitting the first 20. |
sort | Sort based on the date an issue became available for sale. By default, issues are sorted in descending order (newest issue to oldest). To sort by oldest to newest, enter sort=saledate:asc. |
How to return a list of issues
You can use the issues endpoint to return a list of magazine issues.
GET /v1/collections/v1L1BvyQAAA2y/products/43735f1e-bd86-4e6a-8e36-45e270ac7b9b/issues HTTP/1.1 User-Agent: {Your application} Authorization: Bearer {OAuth access token} Host: api.overdrive.com
The call returns a paginated list of issues as shown in the example below. By default, there are 25 issues per page.
200 OK Pragma: no-cache Content-Type: application/json; charset=utf-8 Expires: -1 X-Frame-Options: deny Date: Thu, 25 May 2017 12:25:06 GMT Content-Length: 50457 { "limit": 25, "offset": 0, "totalItems": 25, "id": "v1L1BvyQAAA2y", "products": [ { "id": "543de740-2a6d-4e1d-bd34-7d5c07212972", "crossRefId": 7142721, "mediaType": "Magazine", "title": "HGTV Magazine", "sortTitle": "HGTV Magazine", "series": "HGTV Magazine", "starRating": 0.0, "edition": "Nov 01 2021", "formats": [ { "id": "magazine-overdrive", "name": "OverDrive Magazine", "identifiers": [ { "type": "PublisherCatalogNumber", "value": "3845-507489" } ] } ], "images": { "thumbnail": { "href": "https://img1.od-cdn.com/ImageType-200/11052-1/{543DE740-2A6D-4E1D-BD34-7D5C07212972}Img200.jpg", "type": "image/jpeg" }, "cover150Wide": { "href": "https://img1.od-cdn.com/ImageType-150/11052-1543/DE7/40/{543DE740-2A6D-4E1D-BD34-7D5C07212972}Img150.jpg", "type": "image/jpeg" }, "cover": { "href": "https://img1.od-cdn.com/ImageType-100/11052-1/{543DE740-2A6D-4E1D-BD34-7D5C07212972}Img100.jpg", "type": "image/jpeg" }, "cover300Wide": { "href": "https://img1.od-cdn.com/ImageType-400/11052-1543/DE7/40/{543DE740-2A6D-4E1D-BD34-7D5C07212972}Img400.jpg", "type": "image/jpeg" } }, "contentDetails": [ { "href": "https://link.overdrive.com/?websiteID=800004&titleID=7142721", "type": "text/html", "account": { "id": 7671, "name": "OverDrive Demo - Canary (Lightning) (OH)" } } ], "links": { "self": { "href": "https://api.overdrive.com/v1/collections/v1L1BvyQAAA2y/products/543de740-2a6d-4e1d-bd34-7d5c07212972", "type": "application/vnd.overdrive.api+json" }, "metadata": { "href": "https://api.overdrive.com/v1/collections/v1L1BvyQAAA2y/products/543de740-2a6d-4e1d-bd34-7d5c07212972/metadata", "type": "application/vnd.overdrive.api+json" }, "availability": { "href": "https://api.overdrive.com/v1/collections/v1L1BvyQAAA2y/products/543de740-2a6d-4e1d-bd34-7d5c07212972/availability", "type": "application/vnd.overdrive.api+json" }, "availabilityV2": { "href": "https://api.overdrive.com/v2/collections/v1L1BvyQAAA2y/products/543de740-2a6d-4e1d-bd34-7d5c07212972/availability", "type": "application/vnd.overdrive.api+json" }, "issues": { "href": "https://api.overdrive.com/v1/collections/v1L1BvyQAAA2y/products/43735f1e-bd86-4e6a-8e36-45e270ac7b9b/issues", "type": "application/vnd.overdrive.api+json" } } }, { "id": "03187f54-232c-4578-90d7-aec60aaefeb4", "crossRefId": 6556066, "mediaType": "Magazine", "title": "HGTV Magazine", "sortTitle": "HGTV Magazine", "series": "HGTV Magazine", "starRating": 0.0, "edition": "Oct 01 2021", "formats": [ { "id": "magazine-overdrive", "name": "OverDrive Magazine", "identifiers": [ { "type": "PublisherCatalogNumber", "value": "3845-507488" } ] } ], "images": { "thumbnail": { "href": "https://img1.od-cdn.com/ImageType-200/11052-1/{03187F54-232C-4578-90D7-AEC60AAEFEB4}Img200.jpg", "type": "image/jpeg" }, "cover150Wide": { "href": "https://img1.od-cdn.com/ImageType-150/11052-1031/87F/54/{03187F54-232C-4578-90D7-AEC60AAEFEB4}Img150.jpg", "type": "image/jpeg" }, "cover": { "href": "https://img1.od-cdn.com/ImageType-100/11052-1/{03187F54-232C-4578-90D7-AEC60AAEFEB4}Img100.jpg", "type": "image/jpeg" }, "cover300Wide": { "href": "https://img1.od-cdn.com/ImageType-400/11052-1031/87F/54/{03187F54-232C-4578-90D7-AEC60AAEFEB4}Img400.jpg", "type": "image/jpeg" } }, "contentDetails": [ { "href": "https://link.overdrive.com/?websiteID=800004&titleID=6556066", "type": "text/html", "account": { "id": 7671, "name": "OverDrive Demo - Canary (Lightning) (OH)" } } ], "links": { "self": { "href": "https://api.overdrive.com/v1/collections/v1L1BvyQAAA2y/products/03187f54-232c-4578-90d7-aec60aaefeb4", "type": "application/vnd.overdrive.api+json" }, "metadata": { "href": "https://api.overdrive.com/v1/collections/v1L1BvyQAAA2y/products/03187f54-232c-4578-90d7-aec60aaefeb4/metadata", "type": "application/vnd.overdrive.api+json" }, "availability": { "href": "https://api.overdrive.com/v1/collections/v1L1BvyQAAA2y/products/03187f54-232c-4578-90d7-aec60aaefeb4/availability", "type": "application/vnd.overdrive.api+json" }, "availabilityV2": { "href": "https://api.overdrive.com/v2/collections/v1L1BvyQAAA2y/products/03187f54-232c-4578-90d7-aec60aaefeb4/availability", "type": "application/vnd.overdrive.api+json" }, "issues": { "href": "https://api.overdrive.com/v1/collections/v1L1BvyQAAA2y/products/43735f1e-bd86-4e6a-8e36-45e270ac7b9b/issues", "type": "application/vnd.overdrive.api+json" } } }, { "id": "e1cdb0d3-e5e3-4ff4-be79-9990f7d6d7f6", "crossRefId": 6438954, "mediaType": "Magazine", "title": "HGTV Magazine", "sortTitle": "HGTV Magazine", "series": "HGTV Magazine", "starRating": 0.0, "edition": "Sep 01 2021", "formats": [ { "id": "magazine-overdrive", "name": "OverDrive Magazine", "identifiers": [ { "type": "PublisherCatalogNumber", "value": "3845-507487" } ] } ], "images": { "thumbnail": { "href": "https://img1.od-cdn.com/ImageType-200/11052-1/{E1CDB0D3-E5E3-4FF4-BE79-9990F7D6D7F6}Img200.jpg", "type": "image/jpeg" }, "cover150Wide": { "href": "https://img1.od-cdn.com/ImageType-150/11052-1E1C/DB0/D3/{E1CDB0D3-E5E3-4FF4-BE79-9990F7D6D7F6}Img150.jpg", "type": "image/jpeg" }, "cover": { "href": "https://img1.od-cdn.com/ImageType-100/11052-1/{E1CDB0D3-E5E3-4FF4-BE79-9990F7D6D7F6}Img100.jpg", "type": "image/jpeg" }, "cover300Wide": { "href": "https://img1.od-cdn.com/ImageType-400/11052-1E1C/DB0/D3/{E1CDB0D3-E5E3-4FF4-BE79-9990F7D6D7F6}Img400.jpg", "type": "image/jpeg" } }, "contentDetails": [ { "href": "https://link.overdrive.com/?websiteID=800004&titleID=6438954", "type": "text/html", "account": { "id": 7671, "name": "OverDrive Demo - Canary (Lightning) (OH)" } } ], "links": { "self": { "href": "https://api.overdrive.com/v1/collections/v1L1BvyQAAA2y/products/e1cdb0d3-e5e3-4ff4-be79-9990f7d6d7f6", "type": "application/vnd.overdrive.api+json" }, "metadata": { "href": "https://api.overdrive.com/v1/collections/v1L1BvyQAAA2y/products/e1cdb0d3-e5e3-4ff4-be79-9990f7d6d7f6/metadata", "type": "application/vnd.overdrive.api+json" }, "availability": { "href": "https://api.overdrive.com/v1/collections/v1L1BvyQAAA2y/products/e1cdb0d3-e5e3-4ff4-be79-9990f7d6d7f6/availability", "type": "application/vnd.overdrive.api+json" }, "availabilityV2": { "href": "https://api.overdrive.com/v2/collections/v1L1BvyQAAA2y/products/e1cdb0d3-e5e3-4ff4-be79-9990f7d6d7f6/availability", "type": "application/vnd.overdrive.api+json" }, "issues": { "href": "https://api.overdrive.com/v1/collections/v1L1BvyQAAA2y/products/43735f1e-bd86-4e6a-8e36-45e270ac7b9b/issues", "type": "application/vnd.overdrive.api+json" } } }, { "id": "36598da3-0cc2-4eae-b261-483211f0e74c", "crossRefId": 6318236, "mediaType": "Magazine", "title": "HGTV Magazine", "sortTitle": "HGTV Magazine", "series": "HGTV Magazine", "starRating": 0.0, "edition": "July/August 2021", "formats": [ { "id": "magazine-overdrive", "name": "OverDrive Magazine", "identifiers": [ { "type": "PublisherCatalogNumber", "value": "3845-507486" } ] } ], "images": { "thumbnail": { "href": "https://img1.od-cdn.com/ImageType-200/11052-1/{36598DA3-0CC2-4EAE-B261-483211F0E74C}Img200.jpg", "type": "image/jpeg" }, "cover150Wide": { "href": "https://img1.od-cdn.com/ImageType-150/11052-1365/98D/A3/{36598DA3-0CC2-4EAE-B261-483211F0E74C}Img150.jpg", "type": "image/jpeg" }, "cover": { "href": "https://img1.od-cdn.com/ImageType-100/11052-1/{36598DA3-0CC2-4EAE-B261-483211F0E74C}Img100.jpg", "type": "image/jpeg" }, "cover300Wide": { "href": "https://img1.od-cdn.com/ImageType-400/11052-1365/98D/A3/{36598DA3-0CC2-4EAE-B261-483211F0E74C}Img400.jpg", "type": "image/jpeg" } }, "contentDetails": [ { "href": "https://link.overdrive.com/?websiteID=800004&titleID=6318236", "type": "text/html", "account": { "id": 7671, "name": "OverDrive Demo - Canary (Lightning) (OH)" } } ], "links": { "self": { "href": "https://api.overdrive.com/v1/collections/v1L1BvyQAAA2y/products/36598da3-0cc2-4eae-b261-483211f0e74c", "type": "application/vnd.overdrive.api+json" }, "metadata": { "href": "https://api.overdrive.com/v1/collections/v1L1BvyQAAA2y/products/36598da3-0cc2-4eae-b261-483211f0e74c/metadata", "type": "application/vnd.overdrive.api+json" }, "availability": { "href": "https://api.overdrive.com/v1/collections/v1L1BvyQAAA2y/products/36598da3-0cc2-4eae-b261-483211f0e74c/availability", "type": "application/vnd.overdrive.api+json" }, "availabilityV2": { "href": "https://api.overdrive.com/v2/collections/v1L1BvyQAAA2y/products/36598da3-0cc2-4eae-b261-483211f0e74c/availability", "type": "application/vnd.overdrive.api+json" }, "issues": { "href": "https://api.overdrive.com/v1/collections/v1L1BvyQAAA2y/products/43735f1e-bd86-4e6a-8e36-45e270ac7b9b/issues", "type": "application/vnd.overdrive.api+json" } } }, { "id": "5471e5e6-0b78-46b2-afad-7a6c3f7723dd", "crossRefId": 6246766, "mediaType": "Magazine", "title": "HGTV Magazine", "sortTitle": "HGTV Magazine", "series": "HGTV Magazine", "starRating": 0.0, "edition": "Jun 01 2021", "formats": [ { "id": "magazine-overdrive", "name": "OverDrive Magazine", "identifiers": [ { "type": "PublisherCatalogNumber", "value": "3845-507485" } ] } ], "images": { "thumbnail": { "href": "https://img1.od-cdn.com/ImageType-200/11052-1/{5471E5E6-0B78-46B2-AFAD-7A6C3F7723DD}Img200.jpg", "type": "image/jpeg" }, "cover150Wide": { "href": "https://img1.od-cdn.com/ImageType-150/11052-1547/1E5/E6/{5471E5E6-0B78-46B2-AFAD-7A6C3F7723DD}Img150.jpg", "type": "image/jpeg" }, "cover": { "href": "https://img1.od-cdn.com/ImageType-100/11052-1/{5471E5E6-0B78-46B2-AFAD-7A6C3F7723DD}Img100.jpg", "type": "image/jpeg" }, "cover300Wide": { "href": "https://img1.od-cdn.com/ImageType-400/11052-1547/1E5/E6/{5471E5E6-0B78-46B2-AFAD-7A6C3F7723DD}Img400.jpg", "type": "image/jpeg" } }, "contentDetails": [ { "href": "https://link.overdrive.com/?websiteID=800004&titleID=6246766", "type": "text/html", "account": { "id": 7671, "name": "OverDrive Demo - Canary (Lightning) (OH)" } } ], "links": { "self": { "href": "https://api.overdrive.com/v1/collections/v1L1BvyQAAA2y/products/5471e5e6-0b78-46b2-afad-7a6c3f7723dd", "type": "application/vnd.overdrive.api+json" }, "metadata": { "href": "https://api.overdrive.com/v1/collections/v1L1BvyQAAA2y/products/5471e5e6-0b78-46b2-afad-7a6c3f7723dd/metadata", "type": "application/vnd.overdrive.api+json" }, "availability": { "href": "https://api.overdrive.com/v1/collections/v1L1BvyQAAA2y/products/5471e5e6-0b78-46b2-afad-7a6c3f7723dd/availability", "type": "application/vnd.overdrive.api+json" }, "availabilityV2": { "href": "https://api.overdrive.com/v2/collections/v1L1BvyQAAA2y/products/5471e5e6-0b78-46b2-afad-7a6c3f7723dd/availability", "type": "application/vnd.overdrive.api+json" }, "issues": { "href": "https://api.overdrive.com/v1/collections/v1L1BvyQAAA2y/products/43735f1e-bd86-4e6a-8e36-45e270ac7b9b/issues", "type": "application/vnd.overdrive.api+json" } } }, { "id": "aa2bbd2b-2c25-4ced-bf3e-52c21b6f3fa9", "crossRefId": 6164275, "mediaType": "Magazine", "title": "HGTV Magazine", "sortTitle": "HGTV Magazine", "series": "HGTV Magazine", "starRating": 0.0, "edition": "May 01 2021", "formats": [ { "id": "magazine-overdrive", "name": "OverDrive Magazine", "identifiers": [ { "type": "PublisherCatalogNumber", "value": "3845-507484" } ] } ], "images": { "thumbnail": { "href": "https://img1.od-cdn.com/ImageType-200/11052-1/{AA2BBD2B-2C25-4CED-BF3E-52C21B6F3FA9}Img200.jpg", "type": "image/jpeg" }, "cover150Wide": { "href": "https://img1.od-cdn.com/ImageType-150/11052-1AA2/BBD/2B/{AA2BBD2B-2C25-4CED-BF3E-52C21B6F3FA9}Img150.jpg", "type": "image/jpeg" }, "cover": { "href": "https://img1.od-cdn.com/ImageType-100/11052-1/{AA2BBD2B-2C25-4CED-BF3E-52C21B6F3FA9}Img100.jpg", "type": "image/jpeg" }, "cover300Wide": { "href": "https://img1.od-cdn.com/ImageType-400/11052-1AA2/BBD/2B/{AA2BBD2B-2C25-4CED-BF3E-52C21B6F3FA9}Img400.jpg", "type": "image/jpeg" } }, "contentDetails": [ { "href": "https://link.overdrive.com/?websiteID=800004&titleID=6164275", "type": "text/html", "account": { "id": 7671, "name": "OverDrive Demo - Canary (Lightning) (OH)" } } ], "links": { "self": { "href": "https://api.overdrive.com/v1/collections/v1L1BvyQAAA2y/products/aa2bbd2b-2c25-4ced-bf3e-52c21b6f3fa9", "type": "application/vnd.overdrive.api+json" }, "metadata": { "href": "https://api.overdrive.com/v1/collections/v1L1BvyQAAA2y/products/aa2bbd2b-2c25-4ced-bf3e-52c21b6f3fa9/metadata", "type": "application/vnd.overdrive.api+json" }, "availability": { "href": "https://api.overdrive.com/v1/collections/v1L1BvyQAAA2y/products/aa2bbd2b-2c25-4ced-bf3e-52c21b6f3fa9/availability", "type": "application/vnd.overdrive.api+json" }, "availabilityV2": { "href": "https://api.overdrive.com/v2/collections/v1L1BvyQAAA2y/products/aa2bbd2b-2c25-4ced-bf3e-52c21b6f3fa9/availability", "type": "application/vnd.overdrive.api+json" }, "issues": { "href": "https://api.overdrive.com/v1/collections/v1L1BvyQAAA2y/products/43735f1e-bd86-4e6a-8e36-45e270ac7b9b/issues", "type": "application/vnd.overdrive.api+json" } } }, { "id": "58513eb6-d05f-4863-a897-a35b6cda8644", "crossRefId": 6095688, "mediaType": "Magazine", "title": "HGTV Magazine", "sortTitle": "HGTV Magazine", "series": "HGTV Magazine", "starRating": 0.0, "edition": "Apr 01 2021", "formats": [ { "id": "magazine-overdrive", "name": "OverDrive Magazine", "identifiers": [ { "type": "PublisherCatalogNumber", "value": "3845-507483" } ] } ], "images": { "thumbnail": { "href": "https://img1.od-cdn.com/ImageType-200/11052-1/{58513EB6-D05F-4863-A897-A35B6CDA8644}Img200.jpg", "type": "image/jpeg" }, "cover150Wide": { "href": "https://img1.od-cdn.com/ImageType-150/11052-1585/13E/B6/{58513EB6-D05F-4863-A897-A35B6CDA8644}Img150.jpg", "type": "image/jpeg" }, "cover": { "href": "https://img1.od-cdn.com/ImageType-100/11052-1/{58513EB6-D05F-4863-A897-A35B6CDA8644}Img100.jpg", "type": "image/jpeg" }, "cover300Wide": { "href": "https://img1.od-cdn.com/ImageType-400/11052-1585/13E/B6/{58513EB6-D05F-4863-A897-A35B6CDA8644}Img400.jpg", "type": "image/jpeg" } }, "contentDetails": [ { "href": "https://link.overdrive.com/?websiteID=800004&titleID=6095688", "type": "text/html", "account": { "id": 7671, "name": "OverDrive Demo - Canary (Lightning) (OH)" } } ], "links": { "self": { "href": "https://api.overdrive.com/v1/collections/v1L1BvyQAAA2y/products/58513eb6-d05f-4863-a897-a35b6cda8644", "type": "application/vnd.overdrive.api+json" }, "metadata": { "href": "https://api.overdrive.com/v1/collections/v1L1BvyQAAA2y/products/58513eb6-d05f-4863-a897-a35b6cda8644/metadata", "type": "application/vnd.overdrive.api+json" }, "availability": { "href": "https://api.overdrive.com/v1/collections/v1L1BvyQAAA2y/products/58513eb6-d05f-4863-a897-a35b6cda8644/availability", "type": "application/vnd.overdrive.api+json" }, "availabilityV2": { "href": "https://api.overdrive.com/v2/collections/v1L1BvyQAAA2y/products/58513eb6-d05f-4863-a897-a35b6cda8644/availability", "type": "application/vnd.overdrive.api+json" }, "issues": { "href": "https://api.overdrive.com/v1/collections/v1L1BvyQAAA2y/products/43735f1e-bd86-4e6a-8e36-45e270ac7b9b/issues", "type": "application/vnd.overdrive.api+json" } } }, { "id": "458fffd8-8cb6-4246-88c5-00842f02bd1f", "crossRefId": 6050746, "mediaType": "Magazine", "title": "HGTV Magazine", "sortTitle": "HGTV Magazine", "series": "HGTV Magazine", "starRating": 0.0, "edition": "Mar 01 2021", "formats": [ { "id": "magazine-overdrive", "name": "OverDrive Magazine", "identifiers": [ { "type": "PublisherCatalogNumber", "value": "3845-507482" } ] } ], "images": { "thumbnail": { "href": "https://img1.od-cdn.com/ImageType-200/11052-1/{458FFFD8-8CB6-4246-88C5-00842F02BD1F}Img200.jpg", "type": "image/jpeg" }, "cover150Wide": { "href": "https://img1.od-cdn.com/ImageType-150/11052-1458/FFF/D8/{458FFFD8-8CB6-4246-88C5-00842F02BD1F}Img150.jpg", "type": "image/jpeg" }, "cover": { "href": "https://img1.od-cdn.com/ImageType-100/11052-1/{458FFFD8-8CB6-4246-88C5-00842F02BD1F}Img100.jpg", "type": "image/jpeg" }, "cover300Wide": { "href": "https://img1.od-cdn.com/ImageType-400/11052-1458/FFF/D8/{458FFFD8-8CB6-4246-88C5-00842F02BD1F}Img400.jpg", "type": "image/jpeg" } }, "contentDetails": [ { "href": "https://link.overdrive.com/?websiteID=800004&titleID=6050746", "type": "text/html", "account": { "id": 7671, "name": "OverDrive Demo - Canary (Lightning) (OH)" } } ], "links": { "self": { "href": "https://api.overdrive.com/v1/collections/v1L1BvyQAAA2y/products/458fffd8-8cb6-4246-88c5-00842f02bd1f", "type": "application/vnd.overdrive.api+json" }, "metadata": { "href": "https://api.overdrive.com/v1/collections/v1L1BvyQAAA2y/products/458fffd8-8cb6-4246-88c5-00842f02bd1f/metadata", "type": "application/vnd.overdrive.api+json" }, "availability": { "href": "https://api.overdrive.com/v1/collections/v1L1BvyQAAA2y/products/458fffd8-8cb6-4246-88c5-00842f02bd1f/availability", "type": "application/vnd.overdrive.api+json" }, "availabilityV2": { "href": "https://api.overdrive.com/v2/collections/v1L1BvyQAAA2y/products/458fffd8-8cb6-4246-88c5-00842f02bd1f/availability", "type": "application/vnd.overdrive.api+json" }, "issues": { "href": "https://api.overdrive.com/v1/collections/v1L1BvyQAAA2y/products/43735f1e-bd86-4e6a-8e36-45e270ac7b9b/issues", "type": "application/vnd.overdrive.api+json" } } }, { "id": "ced02b79-ccf3-47b5-a770-bd61d2e750cf", "crossRefId": 5997637, "mediaType": "Magazine", "title": "HGTV Magazine", "sortTitle": "HGTV Magazine", "series": "HGTV Magazine", "starRating": 2.5, "edition": "January/February 2021", "formats": [ { "id": "magazine-overdrive", "name": "OverDrive Magazine", "identifiers": [ { "type": "PublisherCatalogNumber", "value": "3845-507481" } ] } ], "images": { "thumbnail": { "href": "https://img1.od-cdn.com/ImageType-200/11052-1/{CED02B79-CCF3-47B5-A770-BD61D2E750CF}Img200.jpg", "type": "image/jpeg" }, "cover150Wide": { "href": "https://img1.od-cdn.com/ImageType-150/11052-1CED/02B/79/{CED02B79-CCF3-47B5-A770-BD61D2E750CF}Img150.jpg", "type": "image/jpeg" }, "cover": { "href": "https://img1.od-cdn.com/ImageType-100/11052-1/{CED02B79-CCF3-47B5-A770-BD61D2E750CF}Img100.jpg", "type": "image/jpeg" }, "cover300Wide": { "href": "https://img1.od-cdn.com/ImageType-400/11052-1CED/02B/79/{CED02B79-CCF3-47B5-A770-BD61D2E750CF}Img400.jpg", "type": "image/jpeg" } }, "contentDetails": [ { "href": "https://link.overdrive.com/?websiteID=800004&titleID=5997637", "type": "text/html", "account": { "id": 7671, "name": "OverDrive Demo - Canary (Lightning) (OH)" } } ], "links": { "self": { "href": "https://api.overdrive.com/v1/collections/v1L1BvyQAAA2y/products/ced02b79-ccf3-47b5-a770-bd61d2e750cf", "type": "application/vnd.overdrive.api+json" }, "metadata": { "href": "https://api.overdrive.com/v1/collections/v1L1BvyQAAA2y/products/ced02b79-ccf3-47b5-a770-bd61d2e750cf/metadata", "type": "application/vnd.overdrive.api+json" }, "availability": { "href": "https://api.overdrive.com/v1/collections/v1L1BvyQAAA2y/products/ced02b79-ccf3-47b5-a770-bd61d2e750cf/availability", "type": "application/vnd.overdrive.api+json" }, "availabilityV2": { "href": "https://api.overdrive.com/v2/collections/v1L1BvyQAAA2y/products/ced02b79-ccf3-47b5-a770-bd61d2e750cf/availability", "type": "application/vnd.overdrive.api+json" }, "issues": { "href": "https://api.overdrive.com/v1/collections/v1L1BvyQAAA2y/products/43735f1e-bd86-4e6a-8e36-45e270ac7b9b/issues", "type": "application/vnd.overdrive.api+json" } } }, { "id": "853ab0e6-378f-4124-b59c-77aa03b85fec", "crossRefId": 5891843, "mediaType": "Magazine", "title": "HGTV Magazine", "sortTitle": "HGTV Magazine", "series": "HGTV Magazine", "starRating": 4.0, "edition": "Dec 01 2020", "formats": [ { "id": "magazine-overdrive", "name": "OverDrive Magazine", "identifiers": [ { "type": "PublisherCatalogNumber", "value": "3845-469898" } ] } ], "images": { "thumbnail": { "href": "https://img1.od-cdn.com/ImageType-200/11052-1/{853AB0E6-378F-4124-B59C-77AA03B85FEC}Img200.jpg", "type": "image/jpeg" }, "cover150Wide": { "href": "https://img1.od-cdn.com/ImageType-150/11052-1853/AB0/E6/{853AB0E6-378F-4124-B59C-77AA03B85FEC}Img150.jpg", "type": "image/jpeg" }, "cover": { "href": "https://img1.od-cdn.com/ImageType-100/11052-1/{853AB0E6-378F-4124-B59C-77AA03B85FEC}Img100.jpg", "type": "image/jpeg" }, "cover300Wide": { "href": "https://img1.od-cdn.com/ImageType-400/11052-1853/AB0/E6/{853AB0E6-378F-4124-B59C-77AA03B85FEC}Img400.jpg", "type": "image/jpeg" } }, "contentDetails": [ { "href": "https://link.overdrive.com/?websiteID=800004&titleID=5891843", "type": "text/html", "account": { "id": 7671, "name": "OverDrive Demo - Canary (Lightning) (OH)" } } ], "links": { "self": { "href": "https://api.overdrive.com/v1/collections/v1L1BvyQAAA2y/products/853ab0e6-378f-4124-b59c-77aa03b85fec", "type": "application/vnd.overdrive.api+json" }, "metadata": { "href": "https://api.overdrive.com/v1/collections/v1L1BvyQAAA2y/products/853ab0e6-378f-4124-b59c-77aa03b85fec/metadata", "type": "application/vnd.overdrive.api+json" }, "availability": { "href": "https://api.overdrive.com/v1/collections/v1L1BvyQAAA2y/products/853ab0e6-378f-4124-b59c-77aa03b85fec/availability", "type": "application/vnd.overdrive.api+json" }, "availabilityV2": { "href": "https://api.overdrive.com/v2/collections/v1L1BvyQAAA2y/products/853ab0e6-378f-4124-b59c-77aa03b85fec/availability", "type": "application/vnd.overdrive.api+json" }, "issues": { "href": "https://api.overdrive.com/v1/collections/v1L1BvyQAAA2y/products/43735f1e-bd86-4e6a-8e36-45e270ac7b9b/issues", "type": "application/vnd.overdrive.api+json" } } }, { "id": "0894ce15-fd85-4fb7-970c-b528e69fb77f", "crossRefId": 5934301, "mediaType": "Magazine", "title": "HGTV Magazine", "sortTitle": "HGTV Magazine", "series": "HGTV Magazine", "starRating": 0.0, "edition": "Nov 01 2020", "formats": [ { "id": "magazine-overdrive", "name": "OverDrive Magazine", "identifiers": [ { "type": "PublisherCatalogNumber", "value": "3845-469897" } ] } ], "images": { "thumbnail": { "href": "https://img1.od-cdn.com/ImageType-200/11052-1/{0894CE15-FD85-4FB7-970C-B528E69FB77F}Img200.jpg", "type": "image/jpeg" }, "cover150Wide": { "href": "https://img1.od-cdn.com/ImageType-150/11052-1089/4CE/15/{0894CE15-FD85-4FB7-970C-B528E69FB77F}Img150.jpg", "type": "image/jpeg" }, "cover": { "href": "https://img1.od-cdn.com/ImageType-100/11052-1/{0894CE15-FD85-4FB7-970C-B528E69FB77F}Img100.jpg", "type": "image/jpeg" }, "cover300Wide": { "href": "https://img1.od-cdn.com/ImageType-400/11052-1089/4CE/15/{0894CE15-FD85-4FB7-970C-B528E69FB77F}Img400.jpg", "type": "image/jpeg" } }, "contentDetails": [ { "href": "https://link.overdrive.com/?websiteID=800004&titleID=5934301", "type": "text/html", "account": { "id": 7671, "name": "OverDrive Demo - Canary (Lightning) (OH)" } } ], "links": { "self": { "href": "https://api.overdrive.com/v1/collections/v1L1BvyQAAA2y/products/0894ce15-fd85-4fb7-970c-b528e69fb77f", "type": "application/vnd.overdrive.api+json" }, "metadata": { "href": "https://api.overdrive.com/v1/collections/v1L1BvyQAAA2y/products/0894ce15-fd85-4fb7-970c-b528e69fb77f/metadata", "type": "application/vnd.overdrive.api+json" }, "availability": { "href": "https://api.overdrive.com/v1/collections/v1L1BvyQAAA2y/products/0894ce15-fd85-4fb7-970c-b528e69fb77f/availability", "type": "application/vnd.overdrive.api+json" }, "availabilityV2": { "href": "https://api.overdrive.com/v2/collections/v1L1BvyQAAA2y/products/0894ce15-fd85-4fb7-970c-b528e69fb77f/availability", "type": "application/vnd.overdrive.api+json" }, "issues": { "href": "https://api.overdrive.com/v1/collections/v1L1BvyQAAA2y/products/43735f1e-bd86-4e6a-8e36-45e270ac7b9b/issues", "type": "application/vnd.overdrive.api+json" } } }, { "id": "4c48a053-7cfe-49cd-8c5a-ab12ebb801b4", "crossRefId": 5934757, "mediaType": "Magazine", "title": "HGTV Magazine", "sortTitle": "HGTV Magazine", "series": "HGTV Magazine", "starRating": 0.0, "edition": "Oct 01 2020", "formats": [ { "id": "magazine-overdrive", "name": "OverDrive Magazine", "identifiers": [ { "type": "PublisherCatalogNumber", "value": "3845-469896" } ] } ], "images": { "thumbnail": { "href": "https://img1.od-cdn.com/ImageType-200/11052-1/{4C48A053-7CFE-49CD-8C5A-AB12EBB801B4}Img200.jpg", "type": "image/jpeg" }, "cover150Wide": { "href": "https://img1.od-cdn.com/ImageType-150/11052-14C4/8A0/53/{4C48A053-7CFE-49CD-8C5A-AB12EBB801B4}Img150.jpg", "type": "image/jpeg" }, "cover": { "href": "https://img1.od-cdn.com/ImageType-100/11052-1/{4C48A053-7CFE-49CD-8C5A-AB12EBB801B4}Img100.jpg", "type": "image/jpeg" }, "cover300Wide": { "href": "https://img1.od-cdn.com/ImageType-400/11052-14C4/8A0/53/{4C48A053-7CFE-49CD-8C5A-AB12EBB801B4}Img400.jpg", "type": "image/jpeg" } }, "contentDetails": [ { "href": "https://link.overdrive.com/?websiteID=800004&titleID=5934757", "type": "text/html", "account": { "id": 7671, "name": "OverDrive Demo - Canary (Lightning) (OH)" } } ], "links": { "self": { "href": "https://api.overdrive.com/v1/collections/v1L1BvyQAAA2y/products/4c48a053-7cfe-49cd-8c5a-ab12ebb801b4", "type": "application/vnd.overdrive.api+json" }, "metadata": { "href": "https://api.overdrive.com/v1/collections/v1L1BvyQAAA2y/products/4c48a053-7cfe-49cd-8c5a-ab12ebb801b4/metadata", "type": "application/vnd.overdrive.api+json" }, "availability": { "href": "https://api.overdrive.com/v1/collections/v1L1BvyQAAA2y/products/4c48a053-7cfe-49cd-8c5a-ab12ebb801b4/availability", "type": "application/vnd.overdrive.api+json" }, "availabilityV2": { "href": "https://api.overdrive.com/v2/collections/v1L1BvyQAAA2y/products/4c48a053-7cfe-49cd-8c5a-ab12ebb801b4/availability", "type": "application/vnd.overdrive.api+json" }, "issues": { "href": "https://api.overdrive.com/v1/collections/v1L1BvyQAAA2y/products/43735f1e-bd86-4e6a-8e36-45e270ac7b9b/issues", "type": "application/vnd.overdrive.api+json" } } }, { "id": "8d493d68-7b1a-4c32-9221-c0117119cb58", "crossRefId": 5936465, "mediaType": "Magazine", "title": "HGTV Magazine", "sortTitle": "HGTV Magazine", "series": "HGTV Magazine", "starRating": 0.0, "edition": "Sep 01 2020", "formats": [ { "id": "magazine-overdrive", "name": "OverDrive Magazine", "identifiers": [ { "type": "PublisherCatalogNumber", "value": "3845-469895" } ] } ], "images": { "thumbnail": { "href": "https://img1.od-cdn.com/ImageType-200/11052-1/{8D493D68-7B1A-4C32-9221-C0117119CB58}Img200.jpg", "type": "image/jpeg" }, "cover150Wide": { "href": "https://img1.od-cdn.com/ImageType-150/11052-18D4/93D/68/{8D493D68-7B1A-4C32-9221-C0117119CB58}Img150.jpg", "type": "image/jpeg" }, "cover": { "href": "https://img1.od-cdn.com/ImageType-100/11052-1/{8D493D68-7B1A-4C32-9221-C0117119CB58}Img100.jpg", "type": "image/jpeg" }, "cover300Wide": { "href": "https://img1.od-cdn.com/ImageType-400/11052-18D4/93D/68/{8D493D68-7B1A-4C32-9221-C0117119CB58}Img400.jpg", "type": "image/jpeg" } }, "contentDetails": [ { "href": "https://link.overdrive.com/?websiteID=800004&titleID=5936465", "type": "text/html", "account": { "id": 7671, "name": "OverDrive Demo - Canary (Lightning) (OH)" } } ], "links": { "self": { "href": "https://api.overdrive.com/v1/collections/v1L1BvyQAAA2y/products/8d493d68-7b1a-4c32-9221-c0117119cb58", "type": "application/vnd.overdrive.api+json" }, "metadata": { "href": "https://api.overdrive.com/v1/collections/v1L1BvyQAAA2y/products/8d493d68-7b1a-4c32-9221-c0117119cb58/metadata", "type": "application/vnd.overdrive.api+json" }, "availability": { "href": "https://api.overdrive.com/v1/collections/v1L1BvyQAAA2y/products/8d493d68-7b1a-4c32-9221-c0117119cb58/availability", "type": "application/vnd.overdrive.api+json" }, "availabilityV2": { "href": "https://api.overdrive.com/v2/collections/v1L1BvyQAAA2y/products/8d493d68-7b1a-4c32-9221-c0117119cb58/availability", "type": "application/vnd.overdrive.api+json" }, "issues": { "href": "https://api.overdrive.com/v1/collections/v1L1BvyQAAA2y/products/43735f1e-bd86-4e6a-8e36-45e270ac7b9b/issues", "type": "application/vnd.overdrive.api+json" } } }, { "id": "0794785d-6265-4655-8261-409d3d14442c", "crossRefId": 5947232, "mediaType": "Magazine", "title": "HGTV Magazine", "sortTitle": "HGTV Magazine", "series": "HGTV Magazine", "starRating": 0.0, "edition": "Jul/Aug 2020", "formats": [ { "id": "magazine-overdrive", "name": "OverDrive Magazine", "identifiers": [ { "type": "PublisherCatalogNumber", "value": "3845-469894" } ] } ], "images": { "thumbnail": { "href": "https://img1.od-cdn.com/ImageType-200/11052-1/{0794785D-6265-4655-8261-409D3D14442C}Img200.jpg", "type": "image/jpeg" }, "cover150Wide": { "href": "https://img1.od-cdn.com/ImageType-150/11052-1079/478/5D/{0794785D-6265-4655-8261-409D3D14442C}Img150.jpg", "type": "image/jpeg" }, "cover": { "href": "https://img1.od-cdn.com/ImageType-100/11052-1/{0794785D-6265-4655-8261-409D3D14442C}Img100.jpg", "type": "image/jpeg" }, "cover300Wide": { "href": "https://img1.od-cdn.com/ImageType-400/11052-1079/478/5D/{0794785D-6265-4655-8261-409D3D14442C}Img400.jpg", "type": "image/jpeg" } }, "contentDetails": [ { "href": "https://link.overdrive.com/?websiteID=800004&titleID=5947232", "type": "text/html", "account": { "id": 7671, "name": "OverDrive Demo - Canary (Lightning) (OH)" } } ], "links": { "self": { "href": "https://api.overdrive.com/v1/collections/v1L1BvyQAAA2y/products/0794785d-6265-4655-8261-409d3d14442c", "type": "application/vnd.overdrive.api+json" }, "metadata": { "href": "https://api.overdrive.com/v1/collections/v1L1BvyQAAA2y/products/0794785d-6265-4655-8261-409d3d14442c/metadata", "type": "application/vnd.overdrive.api+json" }, "availability": { "href": "https://api.overdrive.com/v1/collections/v1L1BvyQAAA2y/products/0794785d-6265-4655-8261-409d3d14442c/availability", "type": "application/vnd.overdrive.api+json" }, "availabilityV2": { "href": "https://api.overdrive.com/v2/collections/v1L1BvyQAAA2y/products/0794785d-6265-4655-8261-409d3d14442c/availability", "type": "application/vnd.overdrive.api+json" }, "issues": { "href": "https://api.overdrive.com/v1/collections/v1L1BvyQAAA2y/products/43735f1e-bd86-4e6a-8e36-45e270ac7b9b/issues", "type": "application/vnd.overdrive.api+json" } } }, { "id": "5cce6e24-8917-4e7e-9cef-285c14bf1114", "crossRefId": 5945564, "mediaType": "Magazine", "title": "HGTV Magazine", "sortTitle": "HGTV Magazine", "series": "HGTV Magazine", "starRating": 0.0, "edition": "Jun 01 2020", "formats": [ { "id": "magazine-overdrive", "name": "OverDrive Magazine", "identifiers": [ { "type": "PublisherCatalogNumber", "value": "3845-469893" } ] } ], "images": { "thumbnail": { "href": "https://img1.od-cdn.com/ImageType-200/11052-1/{5CCE6E24-8917-4E7E-9CEF-285C14BF1114}Img200.jpg", "type": "image/jpeg" }, "cover150Wide": { "href": "https://img1.od-cdn.com/ImageType-150/11052-15CC/E6E/24/{5CCE6E24-8917-4E7E-9CEF-285C14BF1114}Img150.jpg", "type": "image/jpeg" }, "cover": { "href": "https://img1.od-cdn.com/ImageType-100/11052-1/{5CCE6E24-8917-4E7E-9CEF-285C14BF1114}Img100.jpg", "type": "image/jpeg" }, "cover300Wide": { "href": "https://img1.od-cdn.com/ImageType-400/11052-15CC/E6E/24/{5CCE6E24-8917-4E7E-9CEF-285C14BF1114}Img400.jpg", "type": "image/jpeg" } }, "contentDetails": [ { "href": "https://link.overdrive.com/?websiteID=800004&titleID=5945564", "type": "text/html", "account": { "id": 7671, "name": "OverDrive Demo - Canary (Lightning) (OH)" } } ], "links": { "self": { "href": "https://api.overdrive.com/v1/collections/v1L1BvyQAAA2y/products/5cce6e24-8917-4e7e-9cef-285c14bf1114", "type": "application/vnd.overdrive.api+json" }, "metadata": { "href": "https://api.overdrive.com/v1/collections/v1L1BvyQAAA2y/products/5cce6e24-8917-4e7e-9cef-285c14bf1114/metadata", "type": "application/vnd.overdrive.api+json" }, "availability": { "href": "https://api.overdrive.com/v1/collections/v1L1BvyQAAA2y/products/5cce6e24-8917-4e7e-9cef-285c14bf1114/availability", "type": "application/vnd.overdrive.api+json" }, "availabilityV2": { "href": "https://api.overdrive.com/v2/collections/v1L1BvyQAAA2y/products/5cce6e24-8917-4e7e-9cef-285c14bf1114/availability", "type": "application/vnd.overdrive.api+json" }, "issues": { "href": "https://api.overdrive.com/v1/collections/v1L1BvyQAAA2y/products/43735f1e-bd86-4e6a-8e36-45e270ac7b9b/issues", "type": "application/vnd.overdrive.api+json" } } }, { "id": "aecd940c-bdc5-4dd9-b155-3f4c565c9bfa", "crossRefId": 5935818, "mediaType": "Magazine", "title": "HGTV Magazine", "sortTitle": "HGTV Magazine", "series": "HGTV Magazine", "starRating": 0.0, "edition": "May 01 2020", "formats": [ { "id": "magazine-overdrive", "name": "OverDrive Magazine", "identifiers": [ { "type": "PublisherCatalogNumber", "value": "3845-469892" } ] } ], "images": { "thumbnail": { "href": "https://img1.od-cdn.com/ImageType-200/11052-1/{AECD940C-BDC5-4DD9-B155-3F4C565C9BFA}Img200.jpg", "type": "image/jpeg" }, "cover150Wide": { "href": "https://img1.od-cdn.com/ImageType-150/11052-1AEC/D94/0C/{AECD940C-BDC5-4DD9-B155-3F4C565C9BFA}Img150.jpg", "type": "image/jpeg" }, "cover": { "href": "https://img1.od-cdn.com/ImageType-100/11052-1/{AECD940C-BDC5-4DD9-B155-3F4C565C9BFA}Img100.jpg", "type": "image/jpeg" }, "cover300Wide": { "href": "https://img1.od-cdn.com/ImageType-400/11052-1AEC/D94/0C/{AECD940C-BDC5-4DD9-B155-3F4C565C9BFA}Img400.jpg", "type": "image/jpeg" } }, "contentDetails": [ { "href": "https://link.overdrive.com/?websiteID=800004&titleID=5935818", "type": "text/html", "account": { "id": 7671, "name": "OverDrive Demo - Canary (Lightning) (OH)" } } ], "links": { "self": { "href": "https://api.overdrive.com/v1/collections/v1L1BvyQAAA2y/products/aecd940c-bdc5-4dd9-b155-3f4c565c9bfa", "type": "application/vnd.overdrive.api+json" }, "metadata": { "href": "https://api.overdrive.com/v1/collections/v1L1BvyQAAA2y/products/aecd940c-bdc5-4dd9-b155-3f4c565c9bfa/metadata", "type": "application/vnd.overdrive.api+json" }, "availability": { "href": "https://api.overdrive.com/v1/collections/v1L1BvyQAAA2y/products/aecd940c-bdc5-4dd9-b155-3f4c565c9bfa/availability", "type": "application/vnd.overdrive.api+json" }, "availabilityV2": { "href": "https://api.overdrive.com/v2/collections/v1L1BvyQAAA2y/products/aecd940c-bdc5-4dd9-b155-3f4c565c9bfa/availability", "type": "application/vnd.overdrive.api+json" }, "issues": { "href": "https://api.overdrive.com/v1/collections/v1L1BvyQAAA2y/products/43735f1e-bd86-4e6a-8e36-45e270ac7b9b/issues", "type": "application/vnd.overdrive.api+json" } } }, { "id": "a59ac605-d226-444f-b93a-3a2d7cc03498", "crossRefId": 5932125, "mediaType": "Magazine", "title": "HGTV Magazine", "sortTitle": "HGTV Magazine", "series": "HGTV Magazine", "starRating": 0.0, "edition": "Apr 01 2020", "formats": [ { "id": "magazine-overdrive", "name": "OverDrive Magazine", "identifiers": [ { "type": "PublisherCatalogNumber", "value": "3845-469891" } ] } ], "images": { "thumbnail": { "href": "https://img1.od-cdn.com/ImageType-200/11052-1/{A59AC605-D226-444F-B93A-3A2D7CC03498}Img200.jpg", "type": "image/jpeg" }, "cover150Wide": { "href": "https://img1.od-cdn.com/ImageType-150/11052-1A59/AC6/05/{A59AC605-D226-444F-B93A-3A2D7CC03498}Img150.jpg", "type": "image/jpeg" }, "cover": { "href": "https://img1.od-cdn.com/ImageType-100/11052-1/{A59AC605-D226-444F-B93A-3A2D7CC03498}Img100.jpg", "type": "image/jpeg" }, "cover300Wide": { "href": "https://img1.od-cdn.com/ImageType-400/11052-1A59/AC6/05/{A59AC605-D226-444F-B93A-3A2D7CC03498}Img400.jpg", "type": "image/jpeg" } }, "contentDetails": [ { "href": "https://link.overdrive.com/?websiteID=800004&titleID=5932125", "type": "text/html", "account": { "id": 7671, "name": "OverDrive Demo - Canary (Lightning) (OH)" } } ], "links": { "self": { "href": "https://api.overdrive.com/v1/collections/v1L1BvyQAAA2y/products/a59ac605-d226-444f-b93a-3a2d7cc03498", "type": "application/vnd.overdrive.api+json" }, "metadata": { "href": "https://api.overdrive.com/v1/collections/v1L1BvyQAAA2y/products/a59ac605-d226-444f-b93a-3a2d7cc03498/metadata", "type": "application/vnd.overdrive.api+json" }, "availability": { "href": "https://api.overdrive.com/v1/collections/v1L1BvyQAAA2y/products/a59ac605-d226-444f-b93a-3a2d7cc03498/availability", "type": "application/vnd.overdrive.api+json" }, "availabilityV2": { "href": "https://api.overdrive.com/v2/collections/v1L1BvyQAAA2y/products/a59ac605-d226-444f-b93a-3a2d7cc03498/availability", "type": "application/vnd.overdrive.api+json" }, "issues": { "href": "https://api.overdrive.com/v1/collections/v1L1BvyQAAA2y/products/43735f1e-bd86-4e6a-8e36-45e270ac7b9b/issues", "type": "application/vnd.overdrive.api+json" } } }, { "id": "5fa640ab-bb2d-40bb-855a-b291fa05ff18", "crossRefId": 5947817, "mediaType": "Magazine", "title": "HGTV Magazine", "sortTitle": "HGTV Magazine", "series": "HGTV Magazine", "starRating": 0.0, "edition": "Mar 01 2020", "formats": [ { "id": "magazine-overdrive", "name": "OverDrive Magazine", "identifiers": [ { "type": "PublisherCatalogNumber", "value": "3845-469890" } ] } ], "images": { "thumbnail": { "href": "https://img1.od-cdn.com/ImageType-200/11052-1/{5FA640AB-BB2D-40BB-855A-B291FA05FF18}Img200.jpg", "type": "image/jpeg" }, "cover150Wide": { "href": "https://img1.od-cdn.com/ImageType-150/11052-15FA/640/AB/{5FA640AB-BB2D-40BB-855A-B291FA05FF18}Img150.jpg", "type": "image/jpeg" }, "cover": { "href": "https://img1.od-cdn.com/ImageType-100/11052-1/{5FA640AB-BB2D-40BB-855A-B291FA05FF18}Img100.jpg", "type": "image/jpeg" }, "cover300Wide": { "href": "https://img1.od-cdn.com/ImageType-400/11052-15FA/640/AB/{5FA640AB-BB2D-40BB-855A-B291FA05FF18}Img400.jpg", "type": "image/jpeg" } }, "contentDetails": [ { "href": "https://link.overdrive.com/?websiteID=800004&titleID=5947817", "type": "text/html", "account": { "id": 7671, "name": "OverDrive Demo - Canary (Lightning) (OH)" } } ], "links": { "self": { "href": "https://api.overdrive.com/v1/collections/v1L1BvyQAAA2y/products/5fa640ab-bb2d-40bb-855a-b291fa05ff18", "type": "application/vnd.overdrive.api+json" }, "metadata": { "href": "https://api.overdrive.com/v1/collections/v1L1BvyQAAA2y/products/5fa640ab-bb2d-40bb-855a-b291fa05ff18/metadata", "type": "application/vnd.overdrive.api+json" }, "availability": { "href": "https://api.overdrive.com/v1/collections/v1L1BvyQAAA2y/products/5fa640ab-bb2d-40bb-855a-b291fa05ff18/availability", "type": "application/vnd.overdrive.api+json" }, "availabilityV2": { "href": "https://api.overdrive.com/v2/collections/v1L1BvyQAAA2y/products/5fa640ab-bb2d-40bb-855a-b291fa05ff18/availability", "type": "application/vnd.overdrive.api+json" }, "issues": { "href": "https://api.overdrive.com/v1/collections/v1L1BvyQAAA2y/products/43735f1e-bd86-4e6a-8e36-45e270ac7b9b/issues", "type": "application/vnd.overdrive.api+json" } } }, { "id": "5abb5eae-428b-4e66-a97a-f2b40e3319b7", "crossRefId": 5947758, "mediaType": "Magazine", "title": "HGTV Magazine", "sortTitle": "HGTV Magazine", "series": "HGTV Magazine", "starRating": 0.0, "edition": "Jan/Feb 2020", "formats": [ { "id": "magazine-overdrive", "name": "OverDrive Magazine", "identifiers": [ { "type": "PublisherCatalogNumber", "value": "3845-469889" } ] } ], "images": { "thumbnail": { "href": "https://img1.od-cdn.com/ImageType-200/11052-1/{5ABB5EAE-428B-4E66-A97A-F2B40E3319B7}Img200.jpg", "type": "image/jpeg" }, "cover150Wide": { "href": "https://img1.od-cdn.com/ImageType-150/11052-15AB/B5E/AE/{5ABB5EAE-428B-4E66-A97A-F2B40E3319B7}Img150.jpg", "type": "image/jpeg" }, "cover": { "href": "https://img1.od-cdn.com/ImageType-100/11052-1/{5ABB5EAE-428B-4E66-A97A-F2B40E3319B7}Img100.jpg", "type": "image/jpeg" }, "cover300Wide": { "href": "https://img1.od-cdn.com/ImageType-400/11052-15AB/B5E/AE/{5ABB5EAE-428B-4E66-A97A-F2B40E3319B7}Img400.jpg", "type": "image/jpeg" } }, "contentDetails": [ { "href": "https://link.overdrive.com/?websiteID=800004&titleID=5947758", "type": "text/html", "account": { "id": 7671, "name": "OverDrive Demo - Canary (Lightning) (OH)" } } ], "links": { "self": { "href": "https://api.overdrive.com/v1/collections/v1L1BvyQAAA2y/products/5abb5eae-428b-4e66-a97a-f2b40e3319b7", "type": "application/vnd.overdrive.api+json" }, "metadata": { "href": "https://api.overdrive.com/v1/collections/v1L1BvyQAAA2y/products/5abb5eae-428b-4e66-a97a-f2b40e3319b7/metadata", "type": "application/vnd.overdrive.api+json" }, "availability": { "href": "https://api.overdrive.com/v1/collections/v1L1BvyQAAA2y/products/5abb5eae-428b-4e66-a97a-f2b40e3319b7/availability", "type": "application/vnd.overdrive.api+json" }, "availabilityV2": { "href": "https://api.overdrive.com/v2/collections/v1L1BvyQAAA2y/products/5abb5eae-428b-4e66-a97a-f2b40e3319b7/availability", "type": "application/vnd.overdrive.api+json" }, "issues": { "href": "https://api.overdrive.com/v1/collections/v1L1BvyQAAA2y/products/43735f1e-bd86-4e6a-8e36-45e270ac7b9b/issues", "type": "application/vnd.overdrive.api+json" } } }, { "id": "8bb3e343-0206-46f3-8151-bede5b4fc0e1", "crossRefId": 5839881, "mediaType": "Magazine", "title": "HGTV Magazine", "sortTitle": "HGTV Magazine", "series": "HGTV Magazine", "starRating": 0.0, "edition": "Dec 01 2019", "formats": [ { "id": "magazine-overdrive", "name": "OverDrive Magazine", "identifiers": [ { "type": "PublisherCatalogNumber", "value": "3845-433222" } ] } ], "images": { "thumbnail": { "href": "https://img1.od-cdn.com/ImageType-200/11052-1/{8BB3E343-0206-46F3-8151-BEDE5B4FC0E1}Img200.jpg", "type": "image/jpeg" }, "cover": { "href": "https://img1.od-cdn.com/ImageType-100/11052-1/{8BB3E343-0206-46F3-8151-BEDE5B4FC0E1}Img100.jpg", "type": "image/jpeg" } }, "contentDetails": [ { "href": "https://link.overdrive.com/?websiteID=800004&titleID=5839881", "type": "text/html", "account": { "id": 7671, "name": "OverDrive Demo - Canary (Lightning) (OH)" } } ], "links": { "self": { "href": "https://api.overdrive.com/v1/collections/v1L1BvyQAAA2y/products/8bb3e343-0206-46f3-8151-bede5b4fc0e1", "type": "application/vnd.overdrive.api+json" }, "metadata": { "href": "https://api.overdrive.com/v1/collections/v1L1BvyQAAA2y/products/8bb3e343-0206-46f3-8151-bede5b4fc0e1/metadata", "type": "application/vnd.overdrive.api+json" }, "availability": { "href": "https://api.overdrive.com/v1/collections/v1L1BvyQAAA2y/products/8bb3e343-0206-46f3-8151-bede5b4fc0e1/availability", "type": "application/vnd.overdrive.api+json" }, "availabilityV2": { "href": "https://api.overdrive.com/v2/collections/v1L1BvyQAAA2y/products/8bb3e343-0206-46f3-8151-bede5b4fc0e1/availability", "type": "application/vnd.overdrive.api+json" }, "issues": { "href": "https://api.overdrive.com/v1/collections/v1L1BvyQAAA2y/products/43735f1e-bd86-4e6a-8e36-45e270ac7b9b/issues", "type": "application/vnd.overdrive.api+json" } } }, { "id": "141c792d-7352-46e3-bd45-258b3eb73d1e", "crossRefId": 5838561, "mediaType": "Magazine", "title": "HGTV Magazine", "sortTitle": "HGTV Magazine", "series": "HGTV Magazine", "starRating": 5.0, "edition": "Nov 01 2019", "formats": [ { "id": "magazine-overdrive", "name": "OverDrive Magazine", "identifiers": [ { "type": "PublisherCatalogNumber", "value": "3845-433220" } ] } ], "images": { "thumbnail": { "href": "https://img1.od-cdn.com/ImageType-200/11052-1/{141C792D-7352-46E3-BD45-258B3EB73D1E}Img200.jpg", "type": "image/jpeg" }, "cover": { "href": "https://img1.od-cdn.com/ImageType-100/11052-1/{141C792D-7352-46E3-BD45-258B3EB73D1E}Img100.jpg", "type": "image/jpeg" } }, "contentDetails": [ { "href": "https://link.overdrive.com/?websiteID=800004&titleID=5838561", "type": "text/html", "account": { "id": 7671, "name": "OverDrive Demo - Canary (Lightning) (OH)" } } ], "links": { "self": { "href": "https://api.overdrive.com/v1/collections/v1L1BvyQAAA2y/products/141c792d-7352-46e3-bd45-258b3eb73d1e", "type": "application/vnd.overdrive.api+json" }, "metadata": { "href": "https://api.overdrive.com/v1/collections/v1L1BvyQAAA2y/products/141c792d-7352-46e3-bd45-258b3eb73d1e/metadata", "type": "application/vnd.overdrive.api+json" }, "availability": { "href": "https://api.overdrive.com/v1/collections/v1L1BvyQAAA2y/products/141c792d-7352-46e3-bd45-258b3eb73d1e/availability", "type": "application/vnd.overdrive.api+json" }, "availabilityV2": { "href": "https://api.overdrive.com/v2/collections/v1L1BvyQAAA2y/products/141c792d-7352-46e3-bd45-258b3eb73d1e/availability", "type": "application/vnd.overdrive.api+json" }, "issues": { "href": "https://api.overdrive.com/v1/collections/v1L1BvyQAAA2y/products/43735f1e-bd86-4e6a-8e36-45e270ac7b9b/issues", "type": "application/vnd.overdrive.api+json" } } }, { "id": "63d4e59e-7fa3-464b-b65e-226d30129942", "crossRefId": 5840032, "mediaType": "Magazine", "title": "HGTV Magazine", "sortTitle": "HGTV Magazine", "series": "HGTV Magazine", "starRating": 0.0, "edition": "Oct 01 2019", "formats": [ { "id": "magazine-overdrive", "name": "OverDrive Magazine", "identifiers": [ { "type": "PublisherCatalogNumber", "value": "3845-433219" } ] } ], "images": { "thumbnail": { "href": "https://img1.od-cdn.com/ImageType-200/11052-1/{63D4E59E-7FA3-464B-B65E-226D30129942}Img200.jpg", "type": "image/jpeg" }, "cover": { "href": "https://img1.od-cdn.com/ImageType-100/11052-1/{63D4E59E-7FA3-464B-B65E-226D30129942}Img100.jpg", "type": "image/jpeg" } }, "contentDetails": [ { "href": "https://link.overdrive.com/?websiteID=800004&titleID=5840032", "type": "text/html", "account": { "id": 7671, "name": "OverDrive Demo - Canary (Lightning) (OH)" } } ], "links": { "self": { "href": "https://api.overdrive.com/v1/collections/v1L1BvyQAAA2y/products/63d4e59e-7fa3-464b-b65e-226d30129942", "type": "application/vnd.overdrive.api+json" }, "metadata": { "href": "https://api.overdrive.com/v1/collections/v1L1BvyQAAA2y/products/63d4e59e-7fa3-464b-b65e-226d30129942/metadata", "type": "application/vnd.overdrive.api+json" }, "availability": { "href": "https://api.overdrive.com/v1/collections/v1L1BvyQAAA2y/products/63d4e59e-7fa3-464b-b65e-226d30129942/availability", "type": "application/vnd.overdrive.api+json" }, "availabilityV2": { "href": "https://api.overdrive.com/v2/collections/v1L1BvyQAAA2y/products/63d4e59e-7fa3-464b-b65e-226d30129942/availability", "type": "application/vnd.overdrive.api+json" }, "issues": { "href": "https://api.overdrive.com/v1/collections/v1L1BvyQAAA2y/products/43735f1e-bd86-4e6a-8e36-45e270ac7b9b/issues", "type": "application/vnd.overdrive.api+json" } } }, { "id": "d22aa9a0-5647-4c01-85e1-284376aede93", "crossRefId": 5838195, "mediaType": "Magazine", "title": "HGTV Magazine", "sortTitle": "HGTV Magazine", "series": "HGTV Magazine", "starRating": 0.0, "edition": "Sep 01 2019", "formats": [ { "id": "magazine-overdrive", "name": "OverDrive Magazine", "identifiers": [ { "type": "PublisherCatalogNumber", "value": "3845-433218" } ] } ], "images": { "thumbnail": { "href": "https://img1.od-cdn.com/ImageType-200/11052-1/{D22AA9A0-5647-4C01-85E1-284376AEDE93}Img200.jpg", "type": "image/jpeg" }, "cover": { "href": "https://img1.od-cdn.com/ImageType-100/11052-1/{D22AA9A0-5647-4C01-85E1-284376AEDE93}Img100.jpg", "type": "image/jpeg" } }, "contentDetails": [ { "href": "https://link.overdrive.com/?websiteID=800004&titleID=5838195", "type": "text/html", "account": { "id": 7671, "name": "OverDrive Demo - Canary (Lightning) (OH)" } } ], "links": { "self": { "href": "https://api.overdrive.com/v1/collections/v1L1BvyQAAA2y/products/d22aa9a0-5647-4c01-85e1-284376aede93", "type": "application/vnd.overdrive.api+json" }, "metadata": { "href": "https://api.overdrive.com/v1/collections/v1L1BvyQAAA2y/products/d22aa9a0-5647-4c01-85e1-284376aede93/metadata", "type": "application/vnd.overdrive.api+json" }, "availability": { "href": "https://api.overdrive.com/v1/collections/v1L1BvyQAAA2y/products/d22aa9a0-5647-4c01-85e1-284376aede93/availability", "type": "application/vnd.overdrive.api+json" }, "availabilityV2": { "href": "https://api.overdrive.com/v2/collections/v1L1BvyQAAA2y/products/d22aa9a0-5647-4c01-85e1-284376aede93/availability", "type": "application/vnd.overdrive.api+json" }, "issues": { "href": "https://api.overdrive.com/v1/collections/v1L1BvyQAAA2y/products/43735f1e-bd86-4e6a-8e36-45e270ac7b9b/issues", "type": "application/vnd.overdrive.api+json" } } }, { "id": "a9dcb0a4-d829-47c5-b2ca-eccaa8af7670", "crossRefId": 5838734, "mediaType": "Magazine", "title": "HGTV Magazine", "sortTitle": "HGTV Magazine", "series": "HGTV Magazine", "starRating": 0.0, "edition": "Jul/Aug 2019", "formats": [ { "id": "magazine-overdrive", "name": "OverDrive Magazine", "identifiers": [ { "type": "PublisherCatalogNumber", "value": "3845-433217" } ] } ], "images": { "thumbnail": { "href": "https://img1.od-cdn.com/ImageType-200/11052-1/{A9DCB0A4-D829-47C5-B2CA-ECCAA8AF7670}Img200.jpg", "type": "image/jpeg" }, "cover": { "href": "https://img1.od-cdn.com/ImageType-100/11052-1/{A9DCB0A4-D829-47C5-B2CA-ECCAA8AF7670}Img100.jpg", "type": "image/jpeg" } }, "contentDetails": [ { "href": "https://link.overdrive.com/?websiteID=800004&titleID=5838734", "type": "text/html", "account": { "id": 7671, "name": "OverDrive Demo - Canary (Lightning) (OH)" } } ], "links": { "self": { "href": "https://api.overdrive.com/v1/collections/v1L1BvyQAAA2y/products/a9dcb0a4-d829-47c5-b2ca-eccaa8af7670", "type": "application/vnd.overdrive.api+json" }, "metadata": { "href": "https://api.overdrive.com/v1/collections/v1L1BvyQAAA2y/products/a9dcb0a4-d829-47c5-b2ca-eccaa8af7670/metadata", "type": "application/vnd.overdrive.api+json" }, "availability": { "href": "https://api.overdrive.com/v1/collections/v1L1BvyQAAA2y/products/a9dcb0a4-d829-47c5-b2ca-eccaa8af7670/availability", "type": "application/vnd.overdrive.api+json" }, "availabilityV2": { "href": "https://api.overdrive.com/v2/collections/v1L1BvyQAAA2y/products/a9dcb0a4-d829-47c5-b2ca-eccaa8af7670/availability", "type": "application/vnd.overdrive.api+json" }, "issues": { "href": "https://api.overdrive.com/v1/collections/v1L1BvyQAAA2y/products/43735f1e-bd86-4e6a-8e36-45e270ac7b9b/issues", "type": "application/vnd.overdrive.api+json" } } }, { "id": "a3cb6a5b-4a7e-4b10-9c0e-fb11be3ac4d0", "crossRefId": 5839766, "mediaType": "Magazine", "title": "HGTV Magazine", "sortTitle": "HGTV Magazine", "series": "HGTV Magazine", "starRating": 0.0, "edition": "Jun 01 2019", "formats": [ { "id": "magazine-overdrive", "name": "OverDrive Magazine", "identifiers": [ { "type": "PublisherCatalogNumber", "value": "3845-433216" } ] } ], "images": { "thumbnail": { "href": "https://img1.od-cdn.com/ImageType-200/11052-1/{A3CB6A5B-4A7E-4B10-9C0E-FB11BE3AC4D0}Img200.jpg", "type": "image/jpeg" }, "cover": { "href": "https://img1.od-cdn.com/ImageType-100/11052-1/{A3CB6A5B-4A7E-4B10-9C0E-FB11BE3AC4D0}Img100.jpg", "type": "image/jpeg" } }, "contentDetails": [ { "href": "https://link.overdrive.com/?websiteID=800004&titleID=5839766", "type": "text/html", "account": { "id": 7671, "name": "OverDrive Demo - Canary (Lightning) (OH)" } } ], "links": { "self": { "href": "https://api.overdrive.com/v1/collections/v1L1BvyQAAA2y/products/a3cb6a5b-4a7e-4b10-9c0e-fb11be3ac4d0", "type": "application/vnd.overdrive.api+json" }, "metadata": { "href": "https://api.overdrive.com/v1/collections/v1L1BvyQAAA2y/products/a3cb6a5b-4a7e-4b10-9c0e-fb11be3ac4d0/metadata", "type": "application/vnd.overdrive.api+json" }, "availability": { "href": "https://api.overdrive.com/v1/collections/v1L1BvyQAAA2y/products/a3cb6a5b-4a7e-4b10-9c0e-fb11be3ac4d0/availability", "type": "application/vnd.overdrive.api+json" }, "availabilityV2": { "href": "https://api.overdrive.com/v2/collections/v1L1BvyQAAA2y/products/a3cb6a5b-4a7e-4b10-9c0e-fb11be3ac4d0/availability", "type": "application/vnd.overdrive.api+json" }, "issues": { "href": "https://api.overdrive.com/v1/collections/v1L1BvyQAAA2y/products/43735f1e-bd86-4e6a-8e36-45e270ac7b9b/issues", "type": "application/vnd.overdrive.api+json" } } } ], "links": { "self": { "href": "https://api.overdrive.com/v1/collections/v1L1BvyQAAA2y/products/43735f1e-bd86-4e6a-8e36-45e270ac7b9b/issues?limit=25&offset=0", "type": "application/vnd.overdrive.api+json" }, "first": { "href": "https://api.overdrive.com/v1/collections/v1L1BvyQAAA2y/products/43735f1e-bd86-4e6a-8e36-45e270ac7b9b/issues?limit=25&offset=0", "type": "application/vnd.overdrive.api+json" }, "last": { "href": "https://api.overdrive.com/v1/collections/v1L1BvyQAAA2y/products/43735f1e-bd86-4e6a-8e36-45e270ac7b9b/issues?limit=25&offset=0", "type": "application/vnd.overdrive.api+json" } } }
This response shows results from a specific search. It includes limited title information along with hypermedia links that you can use to access the Metadata or Library Availability API.