Skip to content

Design Your Own Avatar (DYOA)

Fresh

Purpose

Generate a custom AI avatar by describing its appearance using the Creatify DYOA (Design Your Own Avatar) API. No video uploads required -- the AI generates the avatar from a text description.

Prerequisites

  • Authenticated API access (Authentication SOP)
  • A text description of the desired avatar appearance

Procedure

Step 1: List Existing DYOA Avatars

bash
curl --request GET \
  --url https://api.creatify.ai/api/dyoa/ \
  --header "X-API-ID: $CREATIFY_API_ID" \
  --header "X-API-KEY: $CREATIFY_API_KEY"

Response:

json
[
  {
    "id": "dyoa-avatar-uuid",
    "name": "Custom CEO Avatar",
    "description": "Professional male, mid-40s, dark hair, navy suit",
    "thumbnail": "https://cdn.creatify.ai/avatars/dyoa-avatar.jpg"
  }
]

Step 2: Create DYOA Avatar

DYOA avatar creation is currently managed through the Creatify dashboard:

  1. Log in to creatify.ai
  2. Navigate to Avatars then Design Your Own
  3. Describe the avatar's appearance:
    • Age, gender, ethnicity
    • Hair style and color
    • Clothing and accessories
    • Professional setting or background
  4. AI generates the avatar
  5. Once approved, the avatar appears in your API avatar list

Step 3: Use the DYOA Avatar

Once created, use the DYOA avatar ID in any lipsync endpoint:

bash
curl --request POST \
  --url https://api.creatify.ai/api/lipsyncs/ \
  --header "Content-Type: application/json" \
  --header "X-API-ID: $CREATIFY_API_ID" \
  --header "X-API-KEY: $CREATIFY_API_KEY" \
  --data '{
    "text": "Welcome to our company presentation.",
    "creator": "dyoa-avatar-uuid",
    "voice_id": "voice-uuid-001",
    "aspect_ratio": "9:16"
  }'

DYOA vs BYOA Comparison

FeatureDYOABYOA
InputText descriptionVideo recordings
Processing timeMinutes1-2 business days
Consent requiredNoYes (consent video)
RealismAI-generated appearanceBased on real person
Best forFictional/branded avatarsReal spokesperson

Credit Cost

OperationCredits
List DYOA avatars0
Create DYOA avatarVaries (dashboard)
Use in lipsyncSame as lipsync endpoint

Verification Checklist

  • [ ] DYOA avatar appears in the API avatar list
  • [ ] Avatar thumbnail matches the intended appearance
  • [ ] Avatar works correctly in lipsync v1 and v2 endpoints
  • [ ] Lip sync quality is acceptable

See Also