Skip to main content
GET
/
customers
Get Customers
curl --request GET \
  --url https://sandbox-api.prava.space/v1/customers \
  --header 'Api-Key: <api-key>'
{
  "data": {
    "count": 1,
    "data": [
      {
        "id": "d290f1ee-6c54-4b01-90e6-d701748f0851",
        "type": "individual",
        "status": "verified",
        "first_name": "John",
        "last_name": "Doe",
        "email": "john.doe@example.com",
        "has_accepted_terms_of_service": true,
        "created_at": "2025-10-15T05:36:43.000Z",
        "updated_at": "2025-10-15T05:36:43.000Z"
      }
    ]
  },
  "meta": {
    "request_id": "req_12345",
    "timestamp": "2025-10-15T05:36:43.000Z",
    "pagination": {
      "page": 1,
      "page_size": 20,
      "total_count": 1,
      "has_more": false
    }
  }
}

Authorizations

Api-Key
string
header
required

Query Parameters

page
integer
default:1
page_size
integer
default:20

Response

A list of customers.

The response is of type any.

I