# Clone

### Get Clone Profile

**Endpoint:** `GET /v3/clone`&#x20;

**Example request:**

```bash
curl "https://api.delphi.ai/v3/clone" \
  -H "x-api-key: YOUR_API_KEY"
```

**Example response:**

```json
{
  "clone": {
    "id": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
    "name": "Alex Thompson",
    "slug": "alex-thompson",
    "description": "AI researcher and educator",
    "headline": "Making AI accessible to everyone",
    "purpose": "Help visitors understand AI concepts quickly",
    "tags": ["AI", "Education", "Research"],
    "imageUrl": "https://imagedelivery.net/example/public",
    "initial_message": "Hey! I'm Alex. Ask me anything about AI."
  }
}
```

**Response fields:**

| Field             | Type           | Description                         |
| ----------------- | -------------- | ----------------------------------- |
| `id`              | string         | Clone UUID                          |
| `name`            | string         | Clone display name                  |
| `slug`            | string         | Clone URL slug                      |
| `description`     | string \| null | Clone bio/description               |
| `headline`        | string \| null | Short headline                      |
| `purpose`         | string \| null | Clone's configured purpose          |
| `tags`            | string\[]      | Clone topic tags                    |
| `imageUrl`        | string \| null | Profile image URL                   |
| `initial_message` | string \| null | Greeting message shown to new users |
