Skip to main content
POST
/
api
/
run
curl -X POST https://api.artificialstudio.ai/api/run \
  -H "Content-Type: application/json" \
  -H "Authorization: YOUR_API_KEY" \
  -d '{
    "tool": "translate-video",
    "input": {
      "model": "heygen-translate",
      "video_url": "https://example.com/my-video.mp4",
      "output_language": "Spanish"
    }
  }'
{
  "id": "507f1f77bcf86cd799439011",
  "status": "processing",
  "tool": "translate-video",
  "createdAt": "2024-01-15T10:30:00.000Z"
}

Documentation Index

Fetch the complete documentation index at: https://docs.artificialstudio.ai/llms.txt

Use this file to discover all available pages before exploring further.

Credits8 credits per second
Tooltranslate-video

Headers

NameTypeRequiredDescription
AuthorizationstringYesYour API key
Content-TypestringYesapplication/json

Body

ParameterTypeRequiredDescription
toolstringYestranslate-video
input.modelstringYesheygen-translate
input.video_urlstringYesURL of the video to translate
input.output_languagestringNoTarget language (default: Spanish). See supported languages below

Supported Languages

English, Spanish, French, German, Italian, Portuguese, Chinese, Japanese, Korean, Russian, Arabic, Hindi, Dutch, Polish, Turkish, Swedish, Danish, Finnish, Greek, Czech, Romanian, Indonesian, Filipino, Ukrainian, Bulgarian, Malay, Slovak, Croatian, Tamil, Vietnamese, Thai.
curl -X POST https://api.artificialstudio.ai/api/run \
  -H "Content-Type: application/json" \
  -H "Authorization: YOUR_API_KEY" \
  -d '{
    "tool": "translate-video",
    "input": {
      "model": "heygen-translate",
      "video_url": "https://example.com/my-video.mp4",
      "output_language": "Spanish"
    }
  }'
{
  "id": "507f1f77bcf86cd799439011",
  "status": "processing",
  "tool": "translate-video",
  "createdAt": "2024-01-15T10:30:00.000Z"
}