Get Custom Avatar
FreshGETGET https://api.creatify.ai/api/personas/{id}/Retrieve a specific custom avatar by its ID.
Path Parameters
| Name | Type | Required | Description |
|---|---|---|---|
id | string | Yes | The persona ID |
Headers
| Header | Type | Required | Description |
|---|---|---|---|
X-API-ID | string | Yes | Your Creatify API ID |
X-API-KEY | string | Yes | Your Creatify API key |
Example Request
bash
curl -X GET 'https://api.creatify.ai/api/personas/persona-001/' \
-H 'X-API-ID: your-api-id' \
-H 'X-API-KEY: your-api-key'Response
json
{
"id": "persona-001",
"name": "Company Spokesperson",
"status": "active",
"thumbnail": "https://cdn.creatify.ai/personas/persona-001-thumb.jpg",
"created_at": "2024-01-15T10:30:00Z",
"updated_at": "2024-01-15T10:30:00Z"
}Response Fields
| Field | Type | Description |
|---|---|---|
id | string | Unique persona identifier |
name | string | Avatar name |
status | string | Avatar status: active, processing, failed |
thumbnail | string | Thumbnail image URL |
created_at | string | ISO 8601 timestamp |
updated_at | string | ISO 8601 timestamp |
Status Codes
| Code | Description |
|---|---|
200 | Success |
401 | Unauthorized -- invalid API credentials |
404 | Persona not found |
500 | Internal server error |