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

# Get ticket

> Retrieve comprehensive details and contact profile for a specific inbox ticket

Fetch a single conversation ticket by its unique identifier (`inbox_id`). The response contains current lifecycle state, assigned WhatsApp phone number, timestamps, and full contact details.

***

### Authentication

This endpoint requires Bearer token authentication.

```http theme={null}
Authorization: Bearer <token>
```

| Header          | Type     | Required | Description                                     | Format           |
| :-------------- | :------- | :------- | :---------------------------------------------- | :--------------- |
| `Authorization` | `string` | **Yes**  | Scoped organization API key or Bearer JWT token | `Bearer <token>` |

***

### Path Parameters

<ParamField header="Authorization" type="string" required>
  Bearer token for authentication. Format: `Bearer <token>`.
</ParamField>

<ParamField path="inbox_id" type="string" required>
  Unique UUID identifier of the inbox ticket.
</ParamField>

***

### Response Fields

<ResponseField name="id" type="string">
  UUID of the inbox ticket.
</ResponseField>

<ResponseField name="organization_id" type="string">
  UUID of the owning organization.
</ResponseField>

<ResponseField name="contact_id" type="string">
  UUID of the linked contact.
</ResponseField>

<ResponseField name="whatsapp_phone_number_id" type="string">
  UUID of the linked WhatsApp business phone number, or `null`.
</ResponseField>

<ResponseField name="status" type="string">
  Ticket status (`open` or `closed`).
</ResponseField>

<ResponseField name="created_at" type="string">
  ISO 8601 creation timestamp.
</ResponseField>

<ResponseField name="updated_at" type="string">
  ISO 8601 last update timestamp.
</ResponseField>

<ResponseField name="contact" type="object">
  Detailed contact profile object.

  <Expandable title="ContactBriefResponse Fields">
    <ResponseField name="id" type="string">
      Contact UUID.
    </ResponseField>

    <ResponseField name="name" type="string">
      Contact's full name.
    </ResponseField>

    <ResponseField name="phone_number" type="string">
      Contact's phone number.
    </ResponseField>

    <ResponseField name="tags" type="string[]">
      Tags assigned to the contact.
    </ResponseField>

    <ResponseField name="notes" type="string">
      Internal notes or context.
    </ResponseField>

    <ResponseField name="custom_fields" type="object">
      Arbitrary custom metadata key-value object.
    </ResponseField>
  </Expandable>
</ResponseField>

***

<RequestExample>
  ```bash cURL theme={null}
  curl -X GET "https://api.sayvy.ai/api/v1/inbox/tickets/e4f3a2b1-9c8d-7e6f-5a4b-3c2d1e0f9a8b" \
    -H "Authorization: Bearer <token>"
  ```

  ```python Python theme={null}
  import requests

  url = "https://api.sayvy.ai/api/v1/inbox/tickets/e4f3a2b1-9c8d-7e6f-5a4b-3c2d1e0f9a8b"
  headers = {
      "Authorization": "Bearer <token>"
  }

  response = requests.get(url, headers=headers)
  print(response.status_code)
  print(response.json())
  ```

  ```javascript JavaScript theme={null}
  const response = await fetch("https://api.sayvy.ai/api/v1/inbox/tickets/e4f3a2b1-9c8d-7e6f-5a4b-3c2d1e0f9a8b", {
    method: "GET",
    headers: {
      "Authorization": "Bearer <token>"
    }
  });

  const data = await response.json();
  console.log(data);
  ```
</RequestExample>

<ResponseExample>
  ```json 200 OK theme={null}
  {
    "id": "e4f3a2b1-9c8d-7e6f-5a4b-3c2d1e0f9a8b",
    "organization_id": "e0b973dc-13a8-4c9f-861a-03e5b4b1a8d9",
    "contact_id": "8a7c2b3d-4e5f-6a7b-8c9d-0e1f2a3b4c5d",
    "whatsapp_phone_number_id": "11a22b33-44c5-5d6e-7f8a-9b0c1d2e3f4a",
    "status": "open",
    "created_at": "2026-09-07T15:30:00Z",
    "updated_at": "2026-09-07T15:35:00Z",
    "contact": {
      "id": "8a7c2b3d-4e5f-6a7b-8c9d-0e1f2a3b4c5d",
      "name": "Sarah Connor",
      "phone_number": "+14155552671",
      "tags": ["vip", "enterprise"],
      "notes": "Key account representative",
      "custom_fields": {
        "tier": "enterprise"
      }
    }
  }
  ```

  ```json 404 Not Found theme={null}
  {
    "detail": "Inbox ticket not found"
  }
  ```
</ResponseExample>
