cURL
curl --request GET \ --url https://api.example.com/v1/contacts/:id
{ "data": { "id": "<string>", "full_name": "<string>", "email": "<string>", "phone": "<string>", "job_title": "<string>", "company_name": "<string>", "linkedin_url": "<string>", "notes": "<string>", "created_at": "<string>", "updated_date": "<string>" } }
Retrieve a single contact by ID
Authorization: Bearer wbk_your_api_key_here
Show Contact properties
curl https://nbkxaqxwvkgbddekwsma.supabase.co/functions/v1/api-gateway/v1/contacts/123e4567-e89b-12d3-a456-426614174000 \ -H "Authorization: Bearer wbk_your_api_key_here"
{ "data": { "id": "123e4567-e89b-12d3-a456-426614174000", "full_name": "Jane Doe", "email": "jane@example.com", "phone": "+1234567890", "job_title": "General Counsel", "company_name": "Acme Legal", "linkedin_url": "https://linkedin.com/in/janedoe", "notes": "Met at conference. Interested in legal automation tools.", "created_at": "2026-01-15T10:00:00Z", "updated_date": "2026-02-24T14:30:00Z" } }
invalid_key
insufficient_permissions
read
not_found
rate_limited
{ "error": { "code": "not_found", "message": "Contact not found" } }