GET
/
segmentations
/
{segmentation_id}
/
thumbnails
Get thumbnails for a segmentation
curl --request GET \
  --url https://api.cloudglue.dev/v1/segmentations/{segmentation_id}/thumbnails \
  --header 'Authorization: Bearer <token>'
{
  "object": "list",
  "total": 123,
  "limit": 123,
  "offset": 123,
  "data": [
    {
      "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "url": "<string>",
      "time": 123,
      "segmentation_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "segment_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
    }
  ]
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

segmentation_id
string<uuid>
required

The ID of the segmentation to retrieve thumbnails for

Query Parameters

segment_ids
string

Filter thumbnails by segment IDs. If provided, will only return thumbnails for the specified segments. Comma separated list of segment IDs.

limit
integer
default:50

Number of thumbnails to return

Required range: 1 <= x <= 100
offset
integer
default:0

Offset from the start of the list

Required range: x >= 0

Response

200
application/json

Segmentation thumbnails

The response is of type object.