More modelsOpenaiSora

Generate video with openai/sora

Generates a video using the openai/sora model.

POST
/api/v1/model/generateVideo
AuthorizationBearer <token>

API key is required to authorize requests. Obtain a key from your AtlasCloud dashboard.

In: header

modelstring

model name

size?string

The size of the generated media in pixels (width * height).

Value in"480*480" | "480*854" | "854*480" | "720*720" | "720*1280" | "1280*720" | "1080*1080" | "1080*1920" | "1920*1080"
promptstring

The prompt for generating the output.

Response Body

curl -X POST "https://api.atlascloud.ai/api/v1/model/generateVideo" \  -H "Content-Type: application/json" \  -d '{    "model": "openai/sora",    "prompt": "string"  }'
{
  "id": "string",
  "urls": {},
  "model": "string",
  "status": "string",
  "outputs": [
    "string"
  ],
  "created_at": "2019-08-24T14:15:22Z",
  "has_nsfw_contents": [
    true
  ]
}