YouTube
Full video intelligence via the Scrape endpoint.
YouTube is built into Scrape — there's no separate endpoint. Pass any YouTube video URL to /api/v1/scrape and Peep returns a rich youtube object alongside the usual markdown.
What You Get
- Metadata — title, channel, views, likes, publish date, duration
- SEO — tags, category, full description with links
- A/B title history and all thumbnail resolutions
- Transcript (when available)
- Comments — paginated, up to thousands per video
Example
bash
curl -X POST https://peep.shownomore.com/api/v1/scrape \
-H "Authorization: Bearer peep_live_xxx" \
-H "Content-Type: application/json" \
-d '{
"url": "https://www.youtube.com/watch?v=dQw4w9WgXcQ",
"formats": [
"markdown"
]
}'Transcripts & Full Comments
YouTube gates transcripts and the full comment set behind a logged-in session. Connect your YouTube cookies in Settings (stored encrypted) to unlock them for your own scrapes.