Authorizations
Response
A list of customers.
The response is of type any
.
Prava sandbox is live! Join here
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
}
}
}
Retrieves a list of customers for the developer.
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
}
}
}
A list of customers.
The response is of type any
.