Skip to main content
GET
/
v1
/
customers
List customers
curl --request GET \
  --url https://api.paystack.com/v1/customers \
  --header 'Authorization: Bearer <token>'
{
  "status": true,
  "message": "Customers fetched successfully",
  "code": "ok",
  "data": [
    {
      "id": "cust_01HXYZABC1234567890ABCDEFG",
      "type": "individual",
      "name": "Alice Johnson",
      "email": "alice@example.com",
      "merchant_reference": "ref_01HXYZ4K5ABCDEFGHJKLMNPQRS",
      "country_code": "NG",
      "tier": "tier_0",
      "kyc_status": "not_started",
      "metadata": {
        "source": "checkout"
      },
      "created_at": "2026-04-16T16:14:08.000Z",
      "updated_at": "2026-04-16T16:14:08.000Z"
    }
  ],
  "meta": {
    "page": 1,
    "per_page": 50,
    "total": 137,
    "has_more": false,
    "request_id": "req_01HXYZ4K5ABCDEFGHJKLMNPQRS",
    "timestamp": "2026-05-14T15:43:55.732Z",
    "version": "1"
  }
}

Authorizations

Authorization
string
header
required

API key issued during merchant onboarding.

Query Parameters

type
string
kyc_status
string
page
string
per_page
string

Response

Customers fetched successfully

status
enum<boolean>
required
Available options:
true
Example:

true

message
string
required

Human-readable summary

Example:

"Customers fetched successfully"

code
enum<string>
required
Available options:
ok
Example:

"ok"

data
object[]
required
meta
object
required