Skip to main content
POST
/
api
/
vimeo
/
videos
/
subtitles
/vimeo/videos/subtitles
curl --request POST \
  --url https://api.anysite.io/api/vimeo/videos/subtitles \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "video": "<string>",
  "timeout": 300
}
'
[
  {
    "@type": "VimeoSubtitle",
    "id": "<string>",
    "language": "<string>",
    "label": "<string>",
    "kind": "<string>",
    "url": "<string>",
    "is_active": false
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
video
string
required

Video id or URL

Example:

"76979871"

timeout
integer
default:300

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500

Response

Successful Response

@type
string
default:VimeoSubtitle
id
string | null
language
string | null
label
string | null
kind
string | null
url
string | null
is_active
boolean
default:false