Skip to main content
GET
/
assets
Get Assets
curl --request GET \
  --url https://api.catalogix.ai/v1/assets \
  --header 'Authorization: Bearer <token>'
{
  "status": {
    "code": 0,
    "message": "SUCCESS",
    "request_id": "8c8b2b7e-23d7-4c2a-91b0-2a7c4dfbb312"
  },
  "data": {
    "total_groups": 10,
    "returned_groups": 2,
    "assets": {
      "SKU001": {
        "channel": "SMP",
        "asset_type": "image",
        "store_uuid": "abc123",
        "assets": [
          {
            "Image URL 1": "https://cdn.example.com/img1.jpg",
            "asset_id": "abc123"
          }
        ]
      }
    }
  }
}

Authorizations

Authorization
string
header
required

Pass the API token as a Bearer token in the Authorization header.

Headers

X-Request-Id
string

Optional trace ID. If not provided, one is generated automatically

Query Parameters

store_uuid
string
required

Store identifier

channel
string
default:SMP

Channel filter

asset_format
enum<string>
default:image

Asset format filter. Valid values: image, video, pdf, 3D, text.

Available options:
image,
video,
pdf,
3D,
text
offset
integer
default:0

Pagination offset

limit
integer
default:50

Results per page (max 50)

Required range: x <= 50

Response

Assets fetched successfully

status
object
data
object