curl https://api.contazen.ro/v1/clients \
-H "Authorization: Bearer sk_live_YOUR_API_KEY"
{
"success": true,
"data": {
"object": "list",
"data": [
{
"id": "1a2b3c4d5e",
"object": "client",
"name": "Acme Corp SRL",
"email": "contact@acmecorp.ro",
"phone": "+40721234567",
"cui": "RO12345678",
"rc": "J40/1234/2020",
"client_type": "b2b",
"address": "Str. Exemplu nr. 123",
"city": "București, Sectorul 1",
"county": "București",
"country": "RO",
"created_at": 1704067200
},
{
"id": "5f6g7h8i9j",
"object": "client",
"name": "Ion Popescu",
"email": "ion.popescu@email.com",
"phone": "+40744556677",
"cui": null,
"rc": null,
"client_type": "b2c",
"address": "Bd. Unirii nr. 45, Bl. A2, Ap. 15",
"city": "București, Sectorul 3",
"county": "București",
"country": "RO",
"created_at": 1704153600
}
],
"has_more": true,
"total": 45,
"page": 1,
"per_page": 50,
"total_pages": 1
},
"meta": {
"version": "v1",
"response_time": "23.45ms"
}
}
Retrieve a paginated list of all clients
curl https://api.contazen.ro/v1/clients \
-H "Authorization: Bearer sk_live_YOUR_API_KEY"
{
"success": true,
"data": {
"object": "list",
"data": [
{
"id": "1a2b3c4d5e",
"object": "client",
"name": "Acme Corp SRL",
"email": "contact@acmecorp.ro",
"phone": "+40721234567",
"cui": "RO12345678",
"rc": "J40/1234/2020",
"client_type": "b2b",
"address": "Str. Exemplu nr. 123",
"city": "București, Sectorul 1",
"county": "București",
"country": "RO",
"created_at": 1704067200
},
{
"id": "5f6g7h8i9j",
"object": "client",
"name": "Ion Popescu",
"email": "ion.popescu@email.com",
"phone": "+40744556677",
"cui": null,
"rc": null,
"client_type": "b2c",
"address": "Bd. Unirii nr. 45, Bl. A2, Ap. 15",
"city": "București, Sectorul 3",
"county": "București",
"country": "RO",
"created_at": 1704153600
}
],
"has_more": true,
"total": 45,
"page": 1,
"per_page": 50,
"total_pages": 1
},
"meta": {
"version": "v1",
"response_time": "23.45ms"
}
}
name
, created_at
asc
, desc
Show Properties
list
for paginated responsesShow Client Object
client
b2b
or b2c
curl https://api.contazen.ro/v1/clients \
-H "Authorization: Bearer sk_live_YOUR_API_KEY"
{
"success": true,
"data": {
"object": "list",
"data": [
{
"id": "1a2b3c4d5e",
"object": "client",
"name": "Acme Corp SRL",
"email": "contact@acmecorp.ro",
"phone": "+40721234567",
"cui": "RO12345678",
"rc": "J40/1234/2020",
"client_type": "b2b",
"address": "Str. Exemplu nr. 123",
"city": "București, Sectorul 1",
"county": "București",
"country": "RO",
"created_at": 1704067200
},
{
"id": "5f6g7h8i9j",
"object": "client",
"name": "Ion Popescu",
"email": "ion.popescu@email.com",
"phone": "+40744556677",
"cui": null,
"rc": null,
"client_type": "b2c",
"address": "Bd. Unirii nr. 45, Bl. A2, Ap. 15",
"city": "București, Sectorul 3",
"county": "București",
"country": "RO",
"created_at": 1704153600
}
],
"has_more": true,
"total": 45,
"page": 1,
"per_page": 50,
"total_pages": 1
},
"meta": {
"version": "v1",
"response_time": "23.45ms"
}
}
Was this page helpful?