BillKit/Docs Console
Test clocks

List test clocks

List your test clocks, newest first. Test mode only.

GET/v1/test_clocks
Operation list_test_clocks · Scope test_clocks:read · Spec snapshot 2026-09-13

Parameters

ParameterDescription
limitinteger · queryoptionalDefaults to 10. Between 1 and 100.
starting_afterstring | null · queryoptionalAt most 128 characters.

Cursor-paginated. limit caps a page and starting_after takes the last id you saw.

Returns

Returns a page of TestClockResponse objects. data holds the page and has_more says whether another one exists. Page forward by passing the last id of the page as starting_after; a short page is not the end of the list.

Errors

Status Cause
401 Missing or invalid API key.
403 Key is missing the test_clocks:read scope.
422 Validation Error
429 Rate limited. Back off and retry.
Request · curl
curl -X GET https://api.billkit.eu/v1/test_clocks \
  -H "Authorization: Bearer $BILLKIT_SECRET_KEY"
Response · 200 OK
{
  "data": [
    {
      "created": 1789392000,
      "frozen_time": 1789392000,
      "id": "tc_9XKp2vQ1",
      "livemode": false,
      "name": "Ada Lovelace",
      "object": "test_clock"
    }
  ],
  "has_more": false,
  "object": "list"
}