Skip to main content
GET
https://api.karmapay.xyz/v0
/
v0
/
end-users
curl -X GET 'https://api.karmapay.xyz/v0/end-users' \
  -H 'Authorization: Bearer karma_xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx'
{
  "data": [
    {
      "id": "770e8400-e29b-41d4-a716-446655440000",
      "externalUserId": "user_123",
      "email": "[email protected]",
      "applicantId": "abc123xyz789",
      "bridgeCustomerId": "cus_abc123",
      "createdAt": "2025-10-31T12:00:00Z"
    },
    {
      "id": "880e8400-e29b-41d4-a716-446655440001",
      "externalUserId": "user_456",
      "email": "[email protected]",
      "applicantId": "def456xyz789",
      "bridgeCustomerId": "cus_def456",
      "createdAt": "2025-10-30T15:30:00Z"
    }
  ]
}
Authentication: Business API Key

Response

data
array
Array of end-user objects for your business
curl -X GET 'https://api.karmapay.xyz/v0/end-users' \
  -H 'Authorization: Bearer karma_xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx'
{
  "data": [
    {
      "id": "770e8400-e29b-41d4-a716-446655440000",
      "externalUserId": "user_123",
      "email": "[email protected]",
      "applicantId": "abc123xyz789",
      "bridgeCustomerId": "cus_abc123",
      "createdAt": "2025-10-31T12:00:00Z"
    },
    {
      "id": "880e8400-e29b-41d4-a716-446655440001",
      "externalUserId": "user_456",
      "email": "[email protected]",
      "applicantId": "def456xyz789",
      "bridgeCustomerId": "cus_def456",
      "createdAt": "2025-10-30T15:30:00Z"
    }
  ]
}