curl --request GET \
--url https://qwoty.app/api/customers \
--header 'Authorization: <authorization>'{
"success": true,
"data": [
{
"id": "550e8400-e29b-41d4-a716-446655440000",
"workspace_id": "706eb564-6c4a-4e18-841c-bdd79be6bca7",
"name": "Acme Corporation",
"type": "company",
"segment_id": null,
"logo": null,
"id_crm": "crm_001",
"id_erp": null,
"id_accounting": null,
"contact_ids": ["a1b2c3d4-e5f6-7890-abcd-ef1234567890"],
"address_ids": ["c3d4e5f6-a7b8-9012-cdef-123456789012"],
"created_at": "2026-01-15T10:30:00Z",
"updated_at": "2026-01-15T10:30:00Z"
}
]
}
Retrieve all customers in your workspace
curl --request GET \
--url https://qwoty.app/api/customers \
--header 'Authorization: <authorization>'{
"success": true,
"data": [
{
"id": "550e8400-e29b-41d4-a716-446655440000",
"workspace_id": "706eb564-6c4a-4e18-841c-bdd79be6bca7",
"name": "Acme Corporation",
"type": "company",
"segment_id": null,
"logo": null,
"id_crm": "crm_001",
"id_erp": null,
"id_accounting": null,
"contact_ids": ["a1b2c3d4-e5f6-7890-abcd-ef1234567890"],
"address_ids": ["c3d4e5f6-a7b8-9012-cdef-123456789012"],
"created_at": "2026-01-15T10:30:00Z",
"updated_at": "2026-01-15T10:30:00Z"
}
]
}
Documentation Index
Fetch the complete documentation index at: https://docs.qwoty.io/llms.txt
Use this file to discover all available pages before exploring further.
Bearer qwoty_your_tokencurl https://qwoty.app/api/customers \
-H "Authorization: Bearer qwoty_your_token"
true if the request succeededShow Customer Object
company or individualGET /api/contacts/{id} to fetch each contact.GET /api/addresses/{id} to fetch each address.{
"success": true,
"data": [
{
"id": "550e8400-e29b-41d4-a716-446655440000",
"workspace_id": "706eb564-6c4a-4e18-841c-bdd79be6bca7",
"name": "Acme Corporation",
"type": "company",
"segment_id": null,
"logo": null,
"id_crm": "crm_001",
"id_erp": null,
"id_accounting": null,
"contact_ids": ["a1b2c3d4-e5f6-7890-abcd-ef1234567890"],
"address_ids": ["c3d4e5f6-a7b8-9012-cdef-123456789012"],
"created_at": "2026-01-15T10:30:00Z",
"updated_at": "2026-01-15T10:30:00Z"
}
]
}
Was this page helpful?