Skip to main content
GET
/
catalogs
Get multiple catalogs
curl --request GET \
  --url https://your_a2_service/catalogs \
  --header 'Authorization: Bearer <token>'
{
  "items": [
    {
      "metadata": {
        "category": "<string>",
        "id": "<string>",
        "image_link": "<string>",
        "title": "<string>",
        "brand": "<string>",
        "created_at": "2023-11-07T05:31:56Z",
        "link": "<string>",
        "seller_name": "<string>",
        "updated_at": "2023-11-07T05:31:56Z"
      },
      "id": "",
      "schema": "creative.catalog",
      "source": "<string>"
    }
  ],
  "pagination": {
    "page": 123,
    "page_size": 123,
    "total": 123,
    "total_pages": 123
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.aiderx.io/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

The access token received from the authorization server in the OAuth 2.0 flow.

Query Parameters

page
integer
default:1
page_size
integer
default:10
search_query
string | null

Response

Successful Response

Schema for paginated catalog results.

Contains a list of catalog items and associated pagination information.

items
CatalogBaseSchema · object[]
required
pagination
PageInfo · object
required

Pagination information including total items, current page, page size, and total pages.