API version v1.0
Get collection details and list of images (if any are uploaded) for a given collection
GET sxcu.net/c/{CollectionId}.json
GET | https://sxcu.net/c/Hoy9fH.json |
{
"id": "Hoy9fH",
"title": "Mister_Fix's uploads",
"desc": "All of my uploaded images go here",
"views": 537,
"img_views": 3417,
"creation_date": 1531428328,
"public": false,
"unlisted": false,
"images": [
{
"url": "https://hey.wheres-my-ta.co/bzzZk.png",
"thumb": "https://hey.wheres-my-ta.co/t/bzzZk.png",
"upload_time": 1534680144,
"views": 1
},
{
"url": "https://i-need-to.go-get-a.life/YsMpO.png",
"thumb": "https://i-need-to.go-get-a.life/t/YsMpO.png",
"upload_time": 1534638234,
"views": 4
}
]
}
Parameter | Type | Description |
---|---|---|
id | String | The ID of the collection |
title | String | The given title of the collection |
desc | String | The given description (if any) of the collection |
views | Integer | The amount of times this collection was viewed |
creation_time | Integer | A UNIX Timestamp of the creation date of the collection |
public | Boolean | Determines if this collection is publically uploadable to without a token |
unlisted | Boolean | Determines if this collection is listed in the collection page or not |
img_views | String | The collective sum of the amount of views all of the images in this collection got |
images | JSONArray | An array of all of the images in this collection |
images > url | String | The direct URL to an image in the collecttion |
images > thumb | String | The direct URL to a thumbnail of an image in the collecttion |
images > upload_time | Integer | A UNIX Timestamp of the upload date of an image in this collection |
images > views | Integer | The amount of view an image in the collection got |
Rate Limit | None |
Response Format | JSON |
Authentication | None |