> For the complete documentation index, see [llms.txt](https://docs.delphi.ai/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.delphi.ai/advanced/actions/api-immortal-only/clone.md).

# 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 |


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://docs.delphi.ai/advanced/actions/api-immortal-only/clone.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
