Skip to main content
POST
/
clips
/
import-url
Import video from URL
curl --request POST \
  --url https://app.autoposting.ai/api-proxy/clips/import-url \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "url": "https://www.youtube.com/watch?v=dQw4w9WgXcQ",
  "brandSlug": "acme-corp"
}
'
{
  "success": true,
  "data": {}
}

Authorizations

Authorization
string
header
required

API key as Authorization: Bearer sk-social-...

Body

application/json
url
string
required

Public URL of the video to import.

Example:

"https://www.youtube.com/watch?v=dQw4w9WgXcQ"

brandSlug
string
required

Slug of the brand this clip belongs to.

Example:

"acme-corp"

Response

Video import started.

Standard success response envelope.

success
boolean
Example:

true

data
object