Create a bot

An endpoint to create a new bot

POST https://api.aipixy.com/v1/bot

Headers

NameTypeDescription

Authorization*

String

Authorization: Bearer YOUR_API_KEY

Request Body

NameTypeDescription

name*

String

Name for the bot

gender

String

Options: Male, Female, Non-binary (Required if bot is public)

age

String

Options: Children, Adult, Senior (Required if bot is public)

tags

String

Examples: Friendly, Formal, Casual, Dramatic, Corporate, etc. (Required if bot is public)

public

String

Available publicly

accent

String

Examples: Southern, British, Australian, etc. (Required if bot is public)

curl -X POST api.aipixy.com/v1/bot \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -F "name=William" \
  -F "gender=Male" \
  -F "Age=Adult" \
  -F "tags=Friendly, Calm" \
  -F "accent=British" \
  -F "public=False" \
  -F "video=@your_video_path"

Last updated