curl -X POST \
<BASE_URL>/youtube-to-blog \
-H 'Content-Type: application/json' \
-H 'X-API-Key: YOUR_API_KEY' \
-d '{
"url": "https://www.youtube.com/watch?v=dQw4w9WgXcQ"
}'
{
    "sections": [
        "Introduction",
        "Main Points",
        "Conclusion"
    ],
    "bodies": [
        "This section introduces the topic of the video...",
        "The main points discussed in the video are...",
        "In conclusion, the video summarizes..."
    ]
}
url
string

This is the URL of the YouTube video you want to convert into blog sections.

Response

sections
array

An array of strings representing the blog section titles.

bodies
array

An array of strings representing the content for each blog section.