POST
/
sora
/
characters
curl -X POST https://api.example.com/sora/characters \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "name": "Main Character",
    "image": "https://example.com/character.jpg"
  }'
Create a character for Sora video generation.

Request Parameters

name
string
required
Character name.
image
string
required
Character reference image.
description
string
Character description.
curl -X POST https://api.example.com/sora/characters \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "name": "Main Character",
    "image": "https://example.com/character.jpg"
  }'