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.
id
string

The product's unique ID.

name
string

The product's name.

description
string

A description of the product.

price
string

The product's price.

availability
string

The product's availability status (e.g., 'available', 'sold-out-today').

images
string[]

An array of image URLs for the product.

modifierGroups
object[]

An array of modifier groups for the product (if applicable).