API Client
Services

Documentation OpenAPI

Services / GET /v1/services

List services

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

Last updated on

GET
/v1/services
AuthorizationBearer <token>

Preferred customer API authentication. Create a personal or organization key from /my-account?tab=settings, then send Authorization: Bearer <api_key>. Query-string API keys are not supported.

In: header

Query Parameters

limit?integer

Maximum number of items to return. Defaults to 50 when omitted.

Range1 <= value <= 100
offset?integer

Zero-based offset for paginated list requests.

Range0 <= value

Response Body

application/json

application/json

application/json

curl -X GET "https://example.com/v1/services"
{  "object": "list",  "data": [    {      "id": "prod_123",      "object": "service",      "productId": "prod_123",      "name": "Instagram Followers",      "slug": "instagram-followers",      "description": "Audience growth service for Instagram profiles.",      "status": "published",      "stockStatus": "in_stock",      "amount": 250000,      "currency": "NGN",      "minQuantity": 100,      "maxQuantity": 10000,      "stepQuantity": 100,      "sourceSystem": "storefront"    }  ],  "limit": 50,  "offset": 0}
{  "error": {    "code": "string",    "message": "string",    "details": {      "property1": null,      "property2": null    },    "requestId": "string"  }}
{  "error": {    "code": "string",    "message": "string",    "details": {      "property1": null,      "property2": null    },    "requestId": "string"  }}