Skip to content
TALA
Esc
navigateopen⌘Jpreview

Retrieve assets belonging to a specific collection

GET/api/assets/collection/{collectionId}
Authorization
AuthorizationBearer token (JWT) · headerrequired
Path parameters
collectionIdstringrequired
Query parameters
perPagestringrequired
pagestringrequired
qstringrequired
Header parameters
x-organization-idstring
Target organization id. Defaults to the caller's personal organization when omitted.
Responses
200OK
any
401Unauthorized
any
404Not Found
any
Try it
Server
Authorization
Parameters
Request
curl -X GET "http://localhost:8000/api/assets/collection/string?perPage=string&page=string&q=string" \
  -H "Authorization: Bearer YOUR_TOKEN"
Response
{
  "message": "Assets retrieved successfully",
  "data": [
    {
      "id": "ASp9Lm2xK7",
      "assetName": "Company Logo",
      "assetType": "image/png",
      "assetShortUrl": "https://assets.tala.com/logo.png",
      "assetLongUrl": "https://tala-store.s3.amazonaws.com/logo.png?X-Amz-Algorithm...",
      "collection": {
        "id": "CLq4Wm7x1P",
        "title": "Brand Identity"
      },
      "createdAt": "2026-04-03T14:53:11Z"
    }
  ]
}