List Subscriptions

Retrieve subscriptions for your business.

-H "x-api-key: your_secret_key"
GET {{host}}/v1/subscriptions?page=1&limit=20&order=DESC

Query Parameters

FieldData TypeRequiredDescription
pageintegerNoPage to retrieve. Defaults to 1.
limitintegerNoRecords per page. Maximum is 100.
orderstringNoASC or DESC. Defaults to DESC.
sortstringNoField to sort by. Defaults to createdAt.
querystringNoSearch term supported by the backend service.
startDatestringNoStart date filter.
endDatestringNoEnd date filter.
{
  "status": true,
  "message": "Success",
  "code": 200,
  "data": {
    "page": 1,
    "limit": 20,
    "total": 1,
    "pageCount": 1,
    "hasPreviousPage": false,
    "hasNextPage": false,
    "data": [
      {
        "id": "93ad2450-b49f-4c3f-a871-52a5455bdf62",
        "code": "SUB_abc123",
        "status": "ACTIVE",
        "paymentMethod": "card",
        "startDate": "2026-05-20T10:15:00.000Z",
        "nextPaymentDate": "2026-06-20T10:15:00.000Z"
      }
    ]
  }
}