Command Palette

Search for a command to run...

Search Documentation

Search documentation topics, API endpoints, and guides

getServices
Source

OpenAPI Documentation

GET /v1/services

List services

Discover orderable store products, current pricing, and quantity limits.

Last updated on 5/26/2026

Endpoint

get/v1/services

Lists currently published store products that can be ordered through the customer API. Use the returned productId as serviceId when creating an order. Check amount and currency for integer minor-unit pricing, then respect minQuantity, maxQuantity, and stepQuantity before creating orders.

Authentication

Include your customer API key in the Authorization header:

shell
Authorization: Bearer $AUTOMATIC_PALLET_API_KEY

Request

Parameters

NameInTypeRequiredDescription
limitqueryintegerOptionalMaximum number of items to return. Defaults to 50 when omitted.
offsetqueryintegerOptionalZero-based offset for paginated list requests.

Responses

200Published orderable services.
200 Response Schema
{
  "$ref": "#/components/schemas/ServiceListResponse"
}
401Missing or invalid API key.
401 Response Schema
{
  "$ref": "#/components/schemas/ErrorResponse"
}
403API key lacks services:read.
403 Response Schema
{
  "$ref": "#/components/schemas/ErrorResponse"
}

Example cURL Request

cURL
curl "https://automaticpallet.com/v1/services" \
  -H "Authorization: Bearer $AUTOMATIC_PALLET_API_KEY"