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

# Retrieve Domain

> Retrieve details for a specific domain

**Request:**

```bash cURL theme={null}
curl -X GET 'https://api.taap.it/v1/domains/domain_987654321' \
  -H 'Authorization: Bearer taapit_your_api_key_here'
```

**Response:**

```json theme={null}
{
  "id": "domain_987654321",
  "domain": "links.yourcompany.com",
  "description": "Custom domain for marketing links",
  "is_verified": true,
  "created_at": "2024-01-15T10:30:00Z"
}
```

## Authorization

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

## Path Parameters

<ParamField path="domain_id" type="string" required>
  Unique identifier for the domain
</ParamField>

## Response Fields

<ResponseField name="id" type="string" required>
  Unique identifier for the domain
</ResponseField>

<ResponseField name="domain" type="string" required>
  The custom domain name
</ResponseField>

<ResponseField name="description" type="string">
  Description of the domain
</ResponseField>

<ResponseField name="is_verified" type="boolean">
  Whether the domain is verified
</ResponseField>

<ResponseField name="created_at" type="string" required>
  ISO 8601 timestamp when the domain was created
</ResponseField>
