Retrieve a single contact by ID.
GET https://www.chatbase.co/api/v1/chatbots/{chatbotId}/contacts/{contactId}
<YOUR_API_KEY>
Show Contact Object
{ "message": "Success", "data": { "id": "123e4567-e89b-12d3-a456-426614174000", "external_id": "kX2b8YpI-jRmN3vQ5", "name": "John Doe", "email": "john.doe@example.com", "phonenumber": "+1234567890", "custom_attributes": { "age": 30, "location": "New York" }, "created_at": 1571672154, "updated_at": 1571672154 } }
{ "message": "Unauthorized access" }
{ "message": "Contact not found" }
{ "message": "Rate limit exceeded" }
curl -X GET 'https://www.chatbase.co/api/v1/chatbots/5ba682d23d7cf92bef87bfd4/contacts/123e4567-e89b-12d3-a456-426614174000' \ -H 'Authorization: Bearer <YOUR_API_KEY>'