Skip to content
TALA
Esc
navigateopen⌘Jpreview

Get asset details by ID

GET/api/assets/{id}
Authorization
AuthorizationBearer token (JWT) · headerrequired
Path parameters
idstringrequired
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/string" \
  -H "Authorization: Bearer YOUR_TOKEN"
Response
{
  "message": "Asset 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"
  }
}