Artha API
  1. Customers
  • Introduction
  • Authentication
  • KYC/KYB Requirements
  • API Setup Guide
  • Customers
    • Create Customer
      POST
    • List Customers
      GET
    • Get Customer
      GET
    • Update Customer
      PATCH
  • Cards
    • Submit KYC/KYB Applicant
      POST
    • Issue Card
      POST
    • Cards List
      GET
    • Get Card
      GET
    • Get Sensitive Card Details
      GET
  • Card Operations
    • Activate Card
      POST
    • Freeze Card
      POST
    • Unfreeze Card
      POST
    • Cancel Card
      POST
    • Replace Card
      POST
    • Set / Reset Card PIN
      POST
    • Get Card Limits
      GET
    • Update Card Limits
      POST
  • Funding
    • Top Up Card
      POST
    • Get Card Balance
      GET
    • List Top-Up History
      GET
  • Transactions
    • List All Transactions
      GET
    • List Card Transactions
      GET
    • List Customer Transactions
      GET
    • Get Transaction
      GET
  • Products
    • List Products
    • Get Product
  • Utilities
    • Upload Documents
  • Webhook's
    • Webhooks
  1. Customers

List Customers

GET
{{baseUrl}}/api/v1/Customers
Returns a paginated list of all customers. Supports filtering by KYC status, customer type, and creation date range. Use search to find customers by name, email, or phone number.

📤 Response Fields (per item)#

FieldTypeDescriptionNotes
idstring (uuid)- Example: 3fa85f64-5717-4562-b3fc-2c963f66afa6-
typestringindividual or business. Example: individual-
first_namestring- Example: Jane-
middle_namestring-nullable
last_namestring- Example: Doe-
emailstring- Example: jane.doe@example.com-
phone_codestring- Example: +44-
phone_numberstring- Example: 7700900000-
countrystring- Example: GB-
statestring-nullable
statusstringAccount status: active, suspended, closed. Example: active-
kyc_statestringKYC verification state: not_submitted, pending, approved, rejected. Example: approved-
date_of_birthstring (date-time)-nullable
genderstring-nullable
external_referencestring-nullable
businessobject-nullable
addressobject-nullable
created_atstring (date-time)--
updated_atstring (date-time)-nullable

Request

Query Params

Header Params

Responses

🟢200
application/json
Customers retrieved successfully.
Body

🟠401
Request Request Example
Shell
JavaScript
Java
Swift
curl --location -g --request GET '{{baseUrl}}/api/v1/Customers?limit=20&offset=0&status=approved&type&search=jane.doe&created_from=2024-01-01T00:00:00Z&created_to=2024-12-31T23:59:59Z' \
--header 'X-API-Key;' \
--header 'X-Signature;' \
--header 'X-Timestamp;' \
--header 'X-Nonce;' \
--header 'X-Body-Hash;'
Response Response Example
200 - Example 1
{}
Modified at 2026-02-18 13:16:54
Previous
Create Customer
Next
Get Customer
Built with