GET
/
locations
/
categories
/
{categoryId}
/
products
curl --request GET \
  --url https://api.craveup.com/v1/locations/categories/{categoryId}/products \
  --header 'X-API-Key: <api-key>'
[
  {
    "id": "<string>",
    "name": "<string>",
    "description": "<string>",
    "price": "<string>",
    "availability": "<string>",
    "images": [
      "<string>"
    ],
    "modifierGroups": [
      {}
    ]
  }
]

Authorizations

X-API-Key
string
header
required

Path Parameters

categoryId
string
required

The unique ID of the category.

Response

200
application/json

Products retrieved successfully.

The response is of type object[].