Search Documentation
Search documentation topics, API endpoints, and guides
getServices
OpenAPI Documentation
GET /v1/services/{serviceId}
Retrieve a service
Fetch one orderable product before creating an order.
Last updated on 5/26/2026
Endpoint
get/v1/services/{serviceId}
Retrieves one orderable store product by serviceId. Use this before order creation when you need the current price, currency, quantity limits, or stock state. The amount field is always an integer minor-unit value paired with an ISO currency code.
Authentication
Include your customer API key in the Authorization header:
Authorization: Bearer $AUTOMATIC_PALLET_API_KEYRequest
Parameters
| Name | In | Type | Required | Description |
|---|---|---|---|---|
| serviceId | path | string | Required | Identifier of an orderable store product exposed as an API service. |
Responses
200Service details.
{
"$ref": "#/components/schemas/Service"
}401Missing or invalid API key.
{
"$ref": "#/components/schemas/ErrorResponse"
}403API key lacks services:read.
{
"$ref": "#/components/schemas/ErrorResponse"
}404Service not found.
{
"$ref": "#/components/schemas/ErrorResponse"
}Example cURL Request
curl "https://automaticpallet.com/v1/services/$SERVICE_ID" \
-H "Authorization: Bearer $AUTOMATIC_PALLET_API_KEY"