Documentation Index
Fetch the complete documentation index at: https://dev.contentify.app/llms.txt
Use this file to discover all available pages before exploring further.
This is the URL of the YouTube video you want to convert into blog sections.
Response
An array of strings representing the blog section titles.
An array of strings representing the content for each blog section.
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..."
]
}