GET
/
v3
/
realtime
/
goat
/
products
Search product
curl --request GET \
  --url https://api.kicks.dev/v3/realtime/goat/products \
  --header 'Key: <api-key>'
{
  "status": "success",
  "query": {
    "query": "dunk"
  },
  "data": {
    "data": {
      "collections": [
        {
          "recordId": "b578b39f-8631-46e6-9130-943f748c28f0",
          "recordSubtype": "StaticCollection",
          "recordType": 1,
          "slug": "women-s-dunk",
          "title": "Women's Dunk"
        },
        {
          "recordId": "dc4d1bd5-050f-4ecd-b07c-fd8bbd90678c",
          "recordSubtype": "StaticCollection",
          "recordType": 1,
          "slug": "nike-dunk",
          "title": "Nike Dunk"
        }
        /* ... */
      ],
      "products": [
        {
          "category": "shoes",
          "id": "719082",
          "imageUrl": "https://image.goat.com/attachments/product_template_pictures/images/071/445/308/original/719082_00.png.png",
          "slug": "dunk-low-black-white-dd1391-100",
          "title": "Dunk Low 'Black White'"
        },
        {
          "category": "shoes",
          "id": "815560",
          "imageUrl": "https://image.goat.com/attachments/product_template_pictures/images/102/529/153/original/815560_00.png.png",
          "slug": "dunk-low-grey-fog-dd1391-103",
          "title": "Dunk Low 'Grey Fog'"
        }
        /* ... */
      ]
    },
    "total": 0
  },
  "meta": {
    "execution_time": 255
  }
}

Notice

This endpoint allows 60 requests per minute per API key. It’s recommended to use non-realtime data first, and then use this endpoint if you need real-time data. Read more

Membership

This endpoint is available in the standard tier.

Parameters

query
string
The search query.
{
  "status": "success",
  "query": {
    "query": "dunk"
  },
  "data": {
    "data": {
      "collections": [
        {
          "recordId": "b578b39f-8631-46e6-9130-943f748c28f0",
          "recordSubtype": "StaticCollection",
          "recordType": 1,
          "slug": "women-s-dunk",
          "title": "Women's Dunk"
        },
        {
          "recordId": "dc4d1bd5-050f-4ecd-b07c-fd8bbd90678c",
          "recordSubtype": "StaticCollection",
          "recordType": 1,
          "slug": "nike-dunk",
          "title": "Nike Dunk"
        }
        /* ... */
      ],
      "products": [
        {
          "category": "shoes",
          "id": "719082",
          "imageUrl": "https://image.goat.com/attachments/product_template_pictures/images/071/445/308/original/719082_00.png.png",
          "slug": "dunk-low-black-white-dd1391-100",
          "title": "Dunk Low 'Black White'"
        },
        {
          "category": "shoes",
          "id": "815560",
          "imageUrl": "https://image.goat.com/attachments/product_template_pictures/images/102/529/153/original/815560_00.png.png",
          "slug": "dunk-low-grey-fog-dd1391-103",
          "title": "Dunk Low 'Grey Fog'"
        }
        /* ... */
      ]
    },
    "total": 0
  },
  "meta": {
    "execution_time": 255
  }
}