List creator clips
/v1/clipsonar/creators/:id/clipsPaginated clip list for a creator.
Path parameters
idstringrequiredCreator id returned from list or create
Example: 1af8cf27-866f-4434-8e66-10d67cabd7c1
Query parameters
pageintegeroptionalPage number (default 1)
Example: 1
limitintegeroptionalPage size (default 24, max 100)
Example: 24
sort_bystringoptionalSort field (for example views, likes, taken_at)
Example: taken_at
sort_orderstringoptional`asc` or `desc`
Example: desc
searchstringoptionalOptional text filter on caption / gist
Request body
This endpoint has no request body.
Response
200 Paginated clip summaries.
itemsobject[]requiredClip summary objects
pageintegerrequiredCurrent page
limitintegerrequiredPage size
totalintegerrequiredTotal matching clips
has_morebooleanrequiredWhether another page exists
{
"items": [
{
"clip_id": "591acb36-4f7f-4ef0-8bcd-bb570401b47c",
"shortcode": "DblR667vY8u",
"thumbnail_url": "https://sonar-social-media-cache-ap-south-1.s3.ap-south-1.amazonaws.com/analyzer/content/DblR667vY8u/thumbnail.jpg",
"caption_text": "Tonight, V stepped into the crowd, taking in live performances at Vogue World: Hollywood.",
"gist": null,
"views": 7725,
"likes": 461,
"comments": 21,
"taken_at": "2026-08-03T15:13:10.000Z",
"analysis_status": "completed"
}
],
"page": 1,
"limit": 3,
"total": 25,
"has_more": true
}

