> ## Documentation Index
> Fetch the complete documentation index at: https://docs.contactswing.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# Get Customer by ID

> Retrieve a single customer by its ID via the ContactSwing API.

### Authorizations

<ParamField header="Authorization" type="string" required>
  Enter your ContactSwing JWT Bearer token.
</ParamField>

### Path Parameters

<ParamField path="customer_id" type="string" required>
  Unique customer identifier from ContactSwing dashboard.
</ParamField>

### Response

**200 OK** - Customer retrieved successfully

<ResponseField name="ctx_id" type="string">
  Request context ID
</ResponseField>

<ResponseField name="data" type="object">
  Customer details including contact info and metadata.
  <ResponseField name="id" type="string">Customer ID</ResponseField>
  <ResponseField name="name" type="string">Customer name</ResponseField>
  <ResponseField name="phone" type="string">Phone number</ResponseField>
  <ResponseField name="email" type="string">Email address</ResponseField>
</ResponseField>

<ResponseField name="message" type="string">
  "Request processed successfully"
</ResponseField>

### Example Request

```bash theme={null}
curl 'https://prod-contactswing-fastapi-962560522883.us-central1.run.app/v2/_customers/YOUR_CUSTOMER_ID' \
  -H 'Authorization: Bearer YOUR_JWT_TOKEN'
```
