List Services
List Services
List and filter the services in your broker account.
GET
List Services
Returns a paginated list of services that belong to the authenticated broker.
The full endpoint is
GET /api/v1/services. The request does not have a body.
Filtering And Order
The API applies all specified filters before it appliesoffset and limit.
Without modified_since, the API sorts services by created_date in descending order. With modified_since, the API sorts by last_modified in ascending order. It then sorts equal timestamps by service_number in ascending order.
The modified_since boundary is inclusive. A service can occur in two polling responses when its last_modified value is equal to the boundary. Use service_number as the public record identifier when processing repeated results.
The pagination.page value is floor(offset / limit) + 1. For predictable page numbers, use an offset that is a multiple of limit.
Errors
Error responses usesuccess: false and an error object.
Authorizations
Send the API key in the Authorization bearer header. Production keys begin with sk_live_.
Query Parameters
Maximum rows returned; runtime clamps the value to 1–100.
Required range:
1 <= x <= 100Number of matching rows to skip; runtime clamps negative values to zero.
Required range:
x >= 0Available options:
active, pending, suspended, cancelled Case-insensitive customer name/email search, or exact numeric service number.
Inclusive full ISO 8601 timestamp with timezone.
Set to true to include cached VPS credentials; requires admin:full.
Last modified on August 2, 2026

