Orders
List Services
List services available to the authenticated account.
Modified at May 4, 2026, 05:38 AM UTC
GET/api/servicesservice.list
Returns the services available to the authenticated account. Use a service code when creating an order.
Request
curl "https://cekceir.online/api/services" \
-H "Authorization: Bearer <api_key>" \Request Fields
| Field | Type | Required | Description |
|---|---|---|---|
| Authorization | header string | Yes | Bearer token header in the format Bearer <api_key>. |
| limit | query integer, 1..50 | No | Number of items. Default is 20. |
| cursor | query positive integer | No | Cursor for the next page. |
Success Response
{ "data": { "page": { "items": [ { "id": 1, "code": "cek_imei", "name": "Cek Status IMEI", "description": null, "open_time": "08:00", "close_time": "23:00", "is_active": true, "processing_type": "automatic", "service_type": { "id": 1, "code": "imeiroamer", "name": "IMEI", "description": null, "is_active": true, "input_schema": { "type": "object", "properties": { "imeis": { "type": "array", "items": { "type": "string", "pattern": "^[0-9]{15}$" }, "minItems": 1 } }, "required": ["imeis"], "additionalProperties": true, "x-quantityFrom": "/imeis", "x-requestFrom": "/imeis" }, "result_schema": { "type": "object" } }, "created_at": "2026-04-26T00:00:00.000Z", "updated_at": "2026-04-26T00:00:00.000Z" } ], "next_cursor": null } }}Response Fields
| Field | Type | Required | Description |
|---|---|---|---|
| data.page.items | array | Yes | Service records for the current page. |
| data.page.items[].id | number | Yes | Service ID. |
| data.page.items[].code | string | Yes | Service code to send as code when creating an order. |
| data.page.items[].name | string | Yes | Service name. |
| data.page.items[].description | string or null | No | Service description when configured. |
| data.page.items[].open_time | string or null | No | Daily open time in HH:mm, or null when always open. |
| data.page.items[].close_time | string or null | No | Daily close time in HH:mm, or null when always open. |
| data.page.items[].is_active | boolean | Yes | Whether the service is active. |
| data.page.items[].processing_type | string | Yes | Service processing type. |
| data.page.items[].service_type | object | Yes | Service type metadata and schemas. |
| data.page.items[].service_type.input_schema | object | Yes | JSON Schema for the order data payload. |
| data.page.items[].service_type.result_schema | object | Yes | JSON Schema for the result payload. |
| data.page.items[].created_at | ISO datetime | Yes | Service creation time. |
| data.page.items[].updated_at | ISO datetime | Yes | Last service update time. |
| data.page.next_cursor | number or null | No | Cursor for the next page, or null when the list is complete. |