API Endpoint: List Guides
Gets a list of all guides sorted by guideid.
Request
GET /api/1.0/guides GET Parameters
| offset | Optional. Integer. The number of guides to skip from the beginning. Range: [0, infinity). Defaults to 0. |
| limit | Optional. Integer. The number of guides to include in the response. Range: [1, 200]. Defaults to 20. |
| jsonp | Optional. String. The name of a Javascript function to call with the results. See JSONP. |
Example Request
/api/1.0/guides?offset=40&limit=2
Example Response
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 | [
{
"guideid": 41,
"type": "installation",
"device": "PowerBook G3 Lombard",
"thing": "Heat Shield",
"title": null,
"subject": "Heat Shield",
"thumbnail": "http://guide-images.ifixit.net/igi/2lyfhJWlPTh2Qwmw.thumbnail"
},
{
"guideid": 42,
"type": "installation",
"device": "PowerBook G3 Lombard",
"thing": "PRAM Battery",
"title": null,
"subject": "Heat Shield",
"thumbnail": "http://guide-images.ifixit.net/igi/JxYQix3wYYdd6jms.thumbnail"
}
]
|