Search Documentation
Search documentation topics, API endpoints, and guides
getServices
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:
Authorization: Bearer $AUTOMATIC_PALLET_API_KEYRequest
Parameters
| Name | In | Type | Required | Description |
|---|---|---|---|---|
| limit | query | integer | Optional | Maximum number of items to return. Defaults to 50 when omitted. |
| offset | query | integer | Optional | Zero-based offset for paginated list requests. |
Responses
200Published orderable services.
{
"$ref": "#/components/schemas/ServiceListResponse"
}401Missing or invalid API key.
{
"$ref": "#/components/schemas/ErrorResponse"
}403API key lacks services:read.
{
"$ref": "#/components/schemas/ErrorResponse"
}Example cURL Request
curl "https://automaticpallet.com/v1/services" \
-H "Authorization: Bearer $AUTOMATIC_PALLET_API_KEY"