Skip to main content
GET
/
v1
/
customers
/
{customerId}
/
verifications
Get customer's verification status
curl --request GET \
  --url https://api.paystack.com/v1/customers/{customerId}/verifications \
  --header 'Authorization: Bearer <token>'
{
  "status": true,
  "message": "Verification session fetched successfully",
  "code": "ok",
  "data": {
    "id": "kyc_01HXYZABC1234567890ABCDEFG",
    "customer_id": "cust_01HXYZABC1234567890ABCDEFG",
    "status": "pending",
    "tier_requested": "tier_1",
    "tier_current": "tier_0",
    "hosted_url": "http://localhost:3000/_mock/verify/kyc_01HXYZABC1234567890ABCDEFG",
    "hosted_url_expires_at": "2026-04-22T03:00:00.000Z",
    "created_at": "2026-04-22T02:00:00.000Z",
    "updated_at": "2026-04-22T02:00:00.000Z"
  },
  "meta": {
    "request_id": "req_01HXYZ4K5ABCDEFGHJKLMNPQRS",
    "timestamp": "2026-05-14T15:43:55.732Z",
    "version": "1"
  }
}

Authorizations

Authorization
string
header
required

API key issued during merchant onboarding.

Path Parameters

customerId
string
required
Pattern: [^\/#\?]+?

Response

Verification session fetched successfully

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

true

message
string
required

Human-readable summary

Example:

"Verification session fetched successfully"

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

"ok"

data
object
required
meta
object
required