Skip to main content
GET
/
v1
/
programs
curl -X GET 'https://api.tolt.com/v1/programs' \
-H 'Authorization: Bearer <API_KEY>' \
-H 'Content-Type: application/json'
{
  "success": true,
  "has_more": false,
  "total_count": 2,
  "data": [
    {
      "id": "prg_YRsbPDAKhWfdqJbFACheh",
      "name": "Main Program",
      "status": "active",
      "currency_code": "USD",
      "created_at": "2025-01-13T10:06:11.251Z"
    },
    {
      "id": "prg_ztTmEaAJRtfPVKM9nHhZwhjH",
      "name": "EU Program",
      "status": "active",
      "currency_code": "EUR",
      "created_at": "2025-02-02T09:00:00.000Z"
    }
  ]
}

Base URL https://api.tolt.com


Query Parameters

This endpoint does not accept query parameters.

Response

success
boolean
Whether the request was successful.
has_more
boolean
Whether there are more pages of results available.
total_count
integer
Total number of programs.
data
array[Object]
curl -X GET 'https://api.tolt.com/v1/programs' \
-H 'Authorization: Bearer <API_KEY>' \
-H 'Content-Type: application/json'
{
  "success": true,
  "has_more": false,
  "total_count": 2,
  "data": [
    {
      "id": "prg_YRsbPDAKhWfdqJbFACheh",
      "name": "Main Program",
      "status": "active",
      "currency_code": "USD",
      "created_at": "2025-01-13T10:06:11.251Z"
    },
    {
      "id": "prg_ztTmEaAJRtfPVKM9nHhZwhjH",
      "name": "EU Program",
      "status": "active",
      "currency_code": "EUR",
      "created_at": "2025-02-02T09:00:00.000Z"
    }
  ]
}