---
title: "Get a specific contact"
method: GET
path: "/chatbots/{chatbotId}/contacts/{contactId}"
tags: ["Contacts"]
---

# Get a specific contact

`GET /chatbots/{chatbotId}/contacts/{contactId}`

Retrieves a single contact by ID

## Path parameters

- `chatbotId` string, required
- `contactId` string, required

## Response `200`

Contact retrieved successfully

- object
  - `message` string
  - `data` Contact
    - `id` string — Internal contact ID
    - `external_id` string — External contact identifier
    - `name` string — Contact's name
    - `email` string, email — Contact's email address
    - `phonenumber` string — Contact's phone number
    - `stripe_accounts` StripeAccount[] — Array of Stripe accounts associated with this contact
      - `label` string, required — Label identifier for the Stripe account
      - `stripe_id` string, required — Stripe customer ID
      - `stripe_email` string, email — Email address associated with the Stripe account
    - `custom_attributes` object — Custom attributes for the contact
    - `created_at` integer — Contact creation timestamp (Unix timestamp)
    - `updated_at` integer — Last update timestamp (Unix timestamp)

## Other responses

- `401` — Unauthorized - Invalid or missing API key
- `404` — Not Found - Resource does not exist
- `429` — Rate Limited - Too many requests
- `500` — Internal Server Error

---

[API](https://skmtc.dev/chatbase/apis/chatbase-api-v1.md) · [All operations](https://skmtc.dev/chatbase/apis/chatbase-api-v1/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/chatbase/chatbase-api-v1/revisions/3a2187967746/schema)
