POST
/
generate
/
transcription
curl \
-H "Authorization: Bearer API_KEY" \
-H 'Content-Type: application/json' \
-d '{"videoUrl": "https://img.ayrshare.com/random/landscape5.mp4"}' \
-X POST https://api.ayrshare.com/api/generate/transcription
{
    "status": "success",
    "transcript": "This is your last chance. After this, there is no turning back. You take the blue pill the story ends you wake up in your bed and believe whatever you want to be. You take the red pill you stay in Wonderland. And I show you how deep the rabbit hole goes.",
    "transcriptArray": [
        "This is your last chance.",
        "After this, there is no turning back.",
        "You take the blue pill the story ends you wake up in your bed and believe whatever you want to be. You take the red pill you stay in Wonderland.",
        "And I show you how deep the rabbit hole goes."
    ],
    "videoTitle": "Choose Wisely: Blue Pill or Red Pill Adventure Awaits!",
    "wordCount": 52
}
Available on Premium, Business, Enterprise plans.Max Pack required

Provide a transcription and title of a video file using AI. This transcription can then be used in the /generate/post to create a social media summary of the video. For YouTube, which requires a title, the generated title can be used.

The video must have been previously uploaded to Ayrshare with /media. Videos not hosted by Ayrshare will be rejected.

Maximum video file size is 500GB and maximum duration is 10 minutes.

Transcribe Video Guide

Header Parameters

Authorization
string
required
API Key of the Primary Profile.

Format: Authorization: Bearer API_KEY

Body Parameters

videoUrl
string
required

URL encoded video URL. The video must be hosted by Ayrshare.

curl \
-H "Authorization: Bearer API_KEY" \
-H 'Content-Type: application/json' \
-d '{"videoUrl": "https://img.ayrshare.com/random/landscape5.mp4"}' \
-X POST https://api.ayrshare.com/api/generate/transcription
{
    "status": "success",
    "transcript": "This is your last chance. After this, there is no turning back. You take the blue pill the story ends you wake up in your bed and believe whatever you want to be. You take the red pill you stay in Wonderland. And I show you how deep the rabbit hole goes.",
    "transcriptArray": [
        "This is your last chance.",
        "After this, there is no turning back.",
        "You take the blue pill the story ends you wake up in your bed and believe whatever you want to be. You take the red pill you stay in Wonderland.",
        "And I show you how deep the rabbit hole goes."
    ],
    "videoTitle": "Choose Wisely: Blue Pill or Red Pill Adventure Awaits!",
    "wordCount": 52
}