v66

latestOpenAPI 3.1.0Apache 2.0raw.githubusercontent.com2026-08-042174421.1 MB
Account

List accounts

List account configurations.

get/v1/accounts

Query parameters

beginstring date-time

Date string in RFC 3339 format. Only entries created after the specified time will be included. UTC time zone.

endstring date-time

Date string in RFC 3339 format. Only entries created before the specified time will be included. UTC time zone.

ending_beforestring

A cursor representing an item's token before which a page of results should end. Used to retrieve the previous page of results before this item.

page_sizeinteger

Page size (for pagination).

starting_afterstring

A cursor representing an item's token after which a page of results should begin. Used to retrieve the next page of results after this item.

Response

OK

has_moreboolean required

Whether there are more accounts to be retrieved.

Example response

{
  "data": [
    {
      "account_holder": {
        "business_account_token": "e87db14a-4abf-4901-adad-5d5c9f46aff2",
        "email": "jack@lithic.com",
        "phone_number": "+15555555555",
        "token": "95e5f1b7-cfd5-4520-aa3c-2451bab8608d"
      },
      "cardholder_currency": "USD",
      "spend_limit": {
        "daily": 10000,
        "lifetime": 100000,
        "monthly": 40000
      },
      "token": "b68b7424-aa69-4cbc-a946-30d90181b621",
      "verification_address": {
        "address1": "124 Old Forest Way",
        "address2": "Apt 21",
        "city": "Seattle",
        "country": "USA",
        "postal_code": "98109",
        "state": "WA"
      }
    }
  ]
}