Developer API

AtlasSora
API Documentation

Integrate AtlasSora's video generation capabilities into your applications with our powerful REST API.

Quick Start

1

Get API Key

Sign up for AtlasSora and generate your API key from the dashboard.

2

Make API Call

Send a POST request to our video generation endpoint with your content.

3

Receive Video

Get your generated video URL and metadata in the response.

Get Your API Key

Free tier includes 10 video generations per month

API Endpoints

Complete reference for all available API endpoints

POST/api/v1/generate-video

Generate video from web content or text

Parameters:

NameTypeRequiredDescription
urlstringYesWebpage URL to process
contentstringNoDirect text content
templatestringNoVideo template ID
styleobjectNoCustom style options
GET/api/v1/templates

Get available video templates

Parameters:

NameTypeRequiredDescription
categorystringNoFilter by template category
limitnumberNoNumber of templates to return
POST/api/v1/extract-content

Extract and summarize web content

Parameters:

NameTypeRequiredDescription
urlstringYesWebpage URL to extract from
summary_lengthstringNoLength of summary (short, medium, long)

Code Examples

See how to integrate AtlasSora API in your favorite programming language

// Generate video from URL
const response = await fetch('https://api.atlassora.com/v1/generate-video', {
  method: 'POST',
  headers: {
    'Authorization': 'Bearer YOUR_API_KEY',
    'Content-Type': 'application/json'
  },
  body: JSON.stringify({
    url: 'https://example.com/article',
    template: 'news-broadcast',
    style: {
      duration: 'short',
      tone: 'professional'
    }
  })
});

const result = await response.json();
console.log(result.video_url);

Official SDKs

Use our official SDKs for easier integration

JavaScript SDK

Official SDK for Node.js and browser environments

npm install @atlassora/sdkView Documentation

Python SDK

Official SDK for Python applications

pip install atlassoraView Documentation

Go SDK

Official SDK for Go applications

go get github.com/atlassora/sdk-goView Documentation

Rate Limits & Pricing

Transparent pricing with generous free tier

Free

$0
  • 10 videos per month
  • Standard templates
  • Community support
  • API access
Popular

Pro

$29
  • 100 videos per month
  • All templates
  • Priority support
  • Custom branding

Enterprise

Custom
  • Unlimited videos
  • Custom templates
  • Dedicated support
  • SLA guarantee

Ready to Build with AtlasSora?

Start integrating video generation into your applications today