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

FieldTypeRequiredDescription
Authorizationheader stringYesBearer token header in the format Bearer <api_key>.
limitquery integer, 1..50NoNumber of items. Default is 20.
cursorquery positive integerNoCursor 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

FieldTypeRequiredDescription
data.page.itemsarrayYesService records for the current page.
data.page.items[].idnumberYesService ID.
data.page.items[].codestringYesService code to send as code when creating an order.
data.page.items[].namestringYesService name.
data.page.items[].descriptionstring or nullNoService description when configured.
data.page.items[].open_timestring or nullNoDaily open time in HH:mm, or null when always open.
data.page.items[].close_timestring or nullNoDaily close time in HH:mm, or null when always open.
data.page.items[].is_activebooleanYesWhether the service is active.
data.page.items[].processing_typestringYesService processing type.
data.page.items[].service_typeobjectYesService type metadata and schemas.
data.page.items[].service_type.input_schemaobjectYesJSON Schema for the order data payload.
data.page.items[].service_type.result_schemaobjectYesJSON Schema for the result payload.
data.page.items[].created_atISO datetimeYesService creation time.
data.page.items[].updated_atISO datetimeYesLast service update time.
data.page.next_cursornumber or nullNoCursor for the next page, or null when the list is complete.