apyhub
ARTIFICIAL INTELLIGENCE

YouTube Video Analyzer

What it does

YouTube Video Analyzer lets you send a YouTube video URL and get back a concise analysis of the video’s theme plus a list of quotes extracted from it.

Use it when you need to summarise a video, pull out notable lines, or build a workflow around video understanding without processing the full transcript yourself. The request body only needs a single field: url. The response returns theme as a string and quotes as an array of strings, so you can route the result into search, moderation, content curation, or editorial tooling.

Because the output is intentionally small, it fits well into systems that need a quick read on a video before deeper processing. For example, you can index creator content by topic, surface memorable moments from interviews, or add a summary layer to a media dashboard.

YouTube Video Analyzer is a good fit when you want lightweight semantic analysis of a video URL rather than a full transcription pipeline.

POST
YouTube Video Analyzer
https://api.eu.apyverse.com/apyhub/youtube-video-analyzer

QUICKSTART

GUIDE

Quickstart

Send a YouTube video URL to analyze its theme and quotes.

curl -X POST "https://api.eu.apyverse.com/apyhub/youtube-video-analyzer" \
  -H "apy-token: $APY_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{"url":"https://www.youtube.com/watch?v=example"}'

What you'll get back

Returns a JSON object with optional theme and quotes fields. theme is a string, and quotes is an array of strings.

{
  "theme": "Productivity tips",
  "quotes": ["Focus on one task at a time", "Consistency beats intensity"]
}
TRY ITLIVE · 10 ATOMS
Loading your default key…
The full key is used to call the gateway and stays in this tab — never sent to orbit or saved.
body*

About this endpoint

What it does

Analyzes a YouTube video from the supplied URL and returns a JSON object containing the detected theme and a list of quotes extracted from the video.

Request Body

ParameterTypeMandatoryDescription
urlStringYesThe YouTube video URL to analyze.

Response

Returns a JSON object with a theme string field and a quotes string array field.

ParameterTypeMandatoryDescription
themeStringNoThe detected theme of the video.
quotesString ArrayNoQuotes extracted from the video.

Body

Name
Type
Description
bodyREQUIRED
object
▣ COMMON ERRORS

Errors any endpoint can return

400bad_request

Required parameter missing or malformed body.

401unauthorized

API key missing, revoked, or not authorized for this service.

429rate_limited

Your plan's per-second rate exceeded. Retry with exponential backoff.

503upstream_busy

Backend temporarily unavailable. Try again in a few seconds.