API Endpoint: Collection Information
Gets information about a specific collection.
Request
GET /api/1.0/collection/{collectionid} Route Parameters
| collectionid | Required. Integer. The collectionid of the collection to retrieve. Can be obtained from a call to /api/collections. Note that the same information is returned in the list as this endpoint. |
GET Parameters
| jsonp | Optional. String. The name of a Javascript function to call with the results. See JSONP. |
Example Response
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 | {
"collectionid": 1,
"title": "Top Teardowns",
"date": 1322760739,
"guideids": [
6449,
6481,
7048,
7099,
7121,
7182
],
"image": {
"mini": "http:\/\/guide-images.ifixit.net\/igi\/VnXfw23dPFXQvhUt.mini",
"thumbnail": "http:\/\/guide-images.ifixit.net\/igi\/VnXfw23dPFXQvhUt.thumbnail",
"standard": "http:\/\/guide-images.ifixit.net\/igi\/VnXfw23dPFXQvhUt.standard",
"medium": "http:\/\/guide-images.ifixit.net\/igi\/VnXfw23dPFXQvhUt.medium",
"large": "http:\/\/guide-images.ifixit.net\/igi\/VnXfw23dPFXQvhUt.large"
}
}
|