Skip to main content

Products

List Products

GET /public/v1/products

curl -sS \
-H "X-Public-API-Key: $FIELDKIT_PUBLIC_API_KEY" \
"https://api.fieldkit.cc/public/v1/products"

Response:

{
"items": [
{
"id": "stickers",
"name": "Stickers",
"short_description": null,
"image_url": null,
"min_quantity": null,
"max_quantity": null,
"base_price": 2.5
}
]
}

Get Product

GET /public/v1/products/{product_id}

curl -sS \
-H "X-Public-API-Key: $FIELDKIT_PUBLIC_API_KEY" \
"https://api.fieldkit.cc/public/v1/products/stickers"

Response:

{
"id": "stickers",
"name": "Stickers",
"short_description": null,
"description": null,
"image_url": null,
"min_quantity": null,
"max_quantity": null,
"assets_required": null,
"base_price": 2.5,
"badges": [],
"highlights": []
}