Discover
Localized video and channel results.
Fetch public channels, recent videos, localized search, and captions through four focused endpoints.
Marques Brownlee
Channel identity and 12 recent videos
19.8M subscribers
Sample data for interface preview
$0.005
per live channel lookup
50 results
maximum localized search response
50 videos
maximum recent videos with a channel
4 endpoints
channels, search, and transcripts

@GrahamStephanFinance and business
@csaffitzFood and techniqueSearch a market, resolve the creator, then pull the current channel and video context your product needs.
Use the typed SDK in JavaScript or call the same REST contract from any server stack.
const results = await client.raw.youtube.search({
q: 'independent camera reviews',
limit: 20,
country_code: 'US',
language_code: 'en',
});
console.log(results.data.results);Start with a query or handle, then request transcript text only when the workflow needs it.
Localized video and channel results.
Current channel identity, counts, and recent videos.
Single-video or bounded channel transcripts.
Find channels by topic and enrich them with current public context.
Track products, claims, competitors, and topics across localized results.
Connect search and channel results to captions for classification and search.
Ship a stable response contract without maintaining browser parsers.
One credit equals $0.01. Channel lookups, search results, and transcripts use half a credit per successful unit.
Get API keyExact response schemas and limits live in the API reference.
The live API covers public channel data, recent channel videos, localized YouTube search results, individual video transcripts, and bounded channel transcript batches. Every route returns documented JSON through REST or the typed TypeScript SDK.
The official API is the right choice for OAuth workflows, owned-channel management, uploads, and Google-supported quota access. Influship is designed for straightforward public channel, search, and transcript retrieval without managing a separate Google developer project or quota units.
Yes. The channel and channel-transcript routes accept a bare handle, an @handle, or a full youtube.com/@handle URL. Surrounding share tokens and trailing paths are removed before validation.
Yes. The search route accepts a two-letter country code and a language code. It returns as many as 50 mixed video and channel results per request.
A channel lookup costs 0.5 credits, or $0.005. Search and channel transcript requests cost 0.5 credits per result returned. Failed requests are not billed as successful data.
Yes. Call the REST endpoints from requests or httpx and send the key in the X-API-Key header. The official influship npm package provides generated types for TypeScript and JavaScript.
Create a developer account, generate a key, and inspect the response before scaling.