cURL
curl --request GET \ --url https://api.daya.co/v1/customers/{id} \ --header 'X-Api-Key: <x-api-key>'
{ "id": "650e8400-e29b-41d4-a716-446655440000", "email": "customer@example.com", "first_name": "John", "last_name": "Doe", "created_at": "2026-01-05T15:04:05Z", "updated_at": "2026-01-05T15:04:05Z" }
Retrieve a single customer by ID
650e8400-e29b-41d4-a716-446655440000
curl --request GET \ --url https://api.daya.co/v1/customers/650e8400-e29b-41d4-a716-446655440000 \ --header 'X-Api-Key: YOUR_API_KEY'
{ "error": { "code": "validation_failed", "message": "Invalid UUID format" } }