Issuers

List issuers

GET/v1/issuers

Lists issuer identities.

API key · or dashboard session.

Request

Shell
curl -fsS "$API/v1/issuers" -H "Authorization: Bearer $PAYDAY_API_KEY"

Response

200 OK
{
  "issuers": [ {
      "id": "iss_0198f80c-2222-7dc1-a369-90556a64f700",
      "name": "Acme LLC",
      "contact_email": "billing@acme.example",
      "details": null,
      "email_verified": true,
      "email_verified_at": "2026-09-06T12:05:00Z",
      "payout_addresses": [],
      "created_at": "2026-09-06T12:00:00Z",
      "updated_at": "2026-09-06T12:00:00Z"
    } ],
  "next_cursor": null
}

Query parameters

limitinteger
1–100. Default 20.
starting_afteriss_ id
Cursor from next_cursor.

Response

{ issuers: Issuer[], next_cursor: iss_ id | null }.