Skip to main content
Get up and running with the Creatify API in 3 simple steps:
1

Subscribe to a Plan

Choose an API plan that fits your needs. API access requires an active subscription (Starter, Pro, or Enterprise).
2

Get Your API Credentials

Log into your Creatify account, click your account name in the top-left corner, and select API Dashboard. Click Show API Keys to reveal your X-API-ID and X-API-KEY.API Dashboard
3

Make Your First API Call

Include your credentials in the request headers and start generating videos:
curl --request POST \
  --url https://api.creatify.ai/api/links/ \
  --header 'Content-Type: application/json' \
  --header 'X-API-ID: your-api-id' \
  --header 'X-API-KEY: your-api-key' \
  --data '{
    "url": "https://example.com/product-page"
  }'
Protect Your API Credentials — Your X-API-KEY acts like a password. Keep it secret and never expose it in client-side code. If compromised, reset your key immediately from the API settings page.

Next Steps