Skip to main content
GET
/
customers
List customers
curl --request GET \
  --url https://api.conduit.financial/v2/customers \
  --header 'x-api-key: <api-key>'
{
  "data": [
    {
      "id": "<string>",
      "applicationId": "<string>",
      "createdAt": "2026-01-15T09:30:00.000Z",
      "updatedAt": "2026-01-15T09:30:00.000Z",
      "features": [
        {
          "feature": "VIRTUAL_ACCOUNT",
          "isActive": true
        }
      ],
      "customerType": "business",
      "legalName": "Acme Payments Inc.",
      "taxId": "12-3456789",
      "registeredCountry": "US",
      "registeredStreet1": "100 Market St",
      "registeredCity": "San Francisco",
      "dateOfIncorporation": "2020-03-15",
      "legalStructure": "Sociedade Limitada",
      "contactEmail": "compliance@acmepay.com",
      "clientReferenceId": "client-cus-001",
      "tradeName": "Acme Pay",
      "registrationNumber": "12345678",
      "registeredStreet2": "Suite 400",
      "registeredState": "CA",
      "registeredZipCode": "94105",
      "website": "https://acmepay.com",
      "coreIndustry": "Financial Technology",
      "contactPhone": "+14155551234"
    }
  ],
  "meta": {
    "mode": "cursor",
    "nextCursor": "eyJpZCI6ImN1c18yeFBxTjhSIn0",
    "previousCursor": null,
    "total": 42
  }
}

Authorizations

x-api-key
string
header
required

Query Parameters

cursor
string

Opaque cursor from a previous response to fetch the next page

limit
number
default:20

Maximum number of results to return (1-100)

Required range: 1 <= x <= 100
direction
enum<string>

Pagination direction relative to the cursor

Available options:
forward,
backward
clientReferenceId
string

Filter to the customer with this client reference ID.

type
enum<string>[]

Filter by one or more customer types.

Available options:
BUSINESS,
INDIVIDUAL
sortBy
enum<string>
Available options:
createdAt,
updatedAt,
type
sortOrder
enum<string>
Available options:
asc,
desc

Response

data
object[]
required
meta
object
required