YouTube API

YouTube Video sponsors API

Detect suspected sponsors and paid promotions in a YouTube video by URL (sponsor names, websites, confidence).

POST/v1/run/youtube.video_sponsors
Requests
-
30d

Pricing

One price, in dollars

Providers
Giraffe- served- uptime- p50$1.20/1k reqflat

Try it

Make your first request

Open in
Get a free key
Sample response
Free runs return only the first 3 results. Fund a key to get the full response.
{
  "data": {
    "detectionStatus": "active",
    "isPaidPromotion": true,
    "suspectedSponsors": [
      {
        "confidence": "a1b2c3d4",
        "name": "Example title",
        "website": "https://example.com/page"
      }
    ],
    "title": "Example title",
    "videoId": "a1b2c3d4"
  },
  "found": true
}
Response interface
interface YoutubeVideoSponsorsResponse {
  data: {
    detectionStatus: string;
    isPaidPromotion: boolean;
    suspectedSponsors: {
      confidence: string;
      name: string;
      website: string;
    }[];
    title: string;
    videoId: string;
  } | null;
  found: boolean;
}

Full parameter and response reference - every field, type, and example for this endpoint.

Reference

Request, response, and price

Last verified 2026-09-16 · uptime and latency measured over 30d
POST /v1/run/youtube.video_sponsors
curl -X POST https://api.getanyapi.com/v1/run/youtube.video_sponsors \
  -H "Authorization: Bearer $ANYAPI_KEY" \
  -H "Content-Type: application/json" \
  -d '{"url":"https://www.youtube.com/watch?v=AVO0ifle-OU"}'
FieldTypeExample value
Request body
urlstring"https://www.youtube.com/watch?v=AVO0ifle-OU"YouTube video or Short URL.
languagestring2-letter language code for transcript lookup (e.g. en, es, fr).
Response
dataobject
data.detectionStatusstringPopulated whenever the provider has data for the entity.
data.isPaidPromotionboolean
data.suspectedSponsorsobject[]
data.suspectedSponsors[].confidencestring
data.suspectedSponsors[].namestring
data.suspectedSponsors[].websitestring
data.titlestringPopulated whenever the provider has data for the entity.
data.videoIdstringPopulated whenever the provider has data for the entity.
foundboolean
Price
Price per requestUSD$0.0012
Price /1k reqUSD$1.20

FAQ

About the YouTube Video sponsors API

The AnyAPI YouTube Video sponsors API returns YouTube video sponsors data as normalized JSON from one POST call to /v1/run/youtube.video_sponsors. Detect suspected sponsors and paid promotions in a YouTube video by URL (sponsor names, websites, confidence). AnyAPI returns one normalized schema whichever source serves it. It costs from $1.20 per 1,000 requests, in US dollars with no subscription and no monthly minimum.

It costs from $1.20 per 1,000 requests, in US dollars with no subscription and no monthly minimum. You fund one USD wallet, each call draws it down, and a failed request costs $0.

Detect suspected sponsors and paid promotions in a YouTube video by URL (sponsor names, websites, confidence). The response is normalized JSON with the same envelope every AnyAPI endpoint returns, so parsing a second endpoint is a change of URL and nothing else.