A2A conformant A2A vunknown

TrySpansa

v1.0.0 TrySpansa

YouTube sponsorship marketplace API. Discover and qualify 145K+ YouTube channels across 30 niches for brand sponsorship campaigns. OAuth-verified channel analytics, CPM-based rate estimation, and 167+ platform features across discovery, attribution, escrow, and deal flow. Discovery-only in v1; transactional endpoints (create deal, create campaign) deferred to v2 pending auth flow.

Launch agent website ↗

Skills

  • Search YouTube Creators

    Filter 145K+ YouTube channels across 30 niches by niche, country, audience language, subscriber tier, engagement rate, and minimum deal size. Returns ranked creator matches with public metadata (handle, subs, niches, deal-size floor).

    creator-discoveryinfluencer-matchingyoutubesponsorship
  • Get YouTube Creator Profile

    Retrieve the full public profile for a single YouTube channel by handle or channel ID. Includes subscriber count, average views, niche + sub-niche tags, audience demographics, past sponsorship history (via SponsorBlock), and published rate packages where available.

    creator-profileyoutube-channelsponsorship-history
  • Estimate YouTube Sponsorship Rate

    Return CPM-based sponsorship rate estimate for a given creator profile and sponsorship package type (integration, dedicated video, YouTube Shorts). Methodology: niche CPM benchmarks from 6 industry sources × average views × package multiplier. Published at /guides/roi-estimator-methodology.

    rate-estimationcpmpricingsponsorship-rates

Integration

import asyncio
from a2a_registry import AsyncRegistry

async def main():
    async with AsyncRegistry() as registry:
        agent = await registry.get_by_id("c235a802-ed05-49e6-8c0d-94db05b8d324")
        client = await agent.async_connect()
        print(f"Connected to {agent.name}")

asyncio.run(main())