Skip to main content

openai-agents-scavio

Scavio real-time search tools for the OpenAI Agents SDK188 tools across 31 platforms and one URL reader, with one API key.

Google, YouTube, Amazon, Walmart, eBay, Target, Home Depot, Reddit, X, TikTok, TikTok Shop, Instagram, Threads, LinkedIn, Kuaishou, Zillow, Redfin, Booking.com, Airbnb, Tripadvisor, Yelp, Indeed, Glassdoor, the Apple App Store, Google Play, SEC EDGAR, Companies House, G2, Capterra, Google Ads Transparency and the Meta Ad Library — plus scavio_extract, which reads any URL as HTML, Markdown or plain text.

Nothing is held back for the MCP server any more: every live Scavio endpoint is a tool in this package.

Install

pip install openai-agents-scavio

Requires scavio>=0.15.0 — the version that introduced the 21 new platform namespaces and the top-level extract method. An older SDK cannot resolve most of the tools below.

Setup

Get a Scavio API key from the Scavio Dashboard (new accounts get 50 free credits, no credit card). Set SCAVIO_API_KEY or pass api_key= to the factory.

Usage

from agents import Agent, Runner
from openai_agents_scavio import get_scavio_tools

agent = Agent(
    name="Search Assistant",
    instructions="Search the web, shopping sites, and social platforms with Scavio.",
    tools=get_scavio_tools(),  # reads SCAVIO_API_KEY
)

result = Runner.run_sync(agent, "Find the top budget laptops on Amazon")
print(result.final_output)

Pick your platforms

188 tools is far more than any one agent should carry. Every platform is gated by an enable_* flag, all defaulting to True, so disable what you do not need:

tools = get_scavio_tools(
    enable_google=True,
    enable_reddit=True,
    enable_extract=True,
    enable_amazon=False,
    enable_walmart=False,
    enable_youtube=False,
    enable_tiktok=False,
    enable_instagram=False,
    # ... and so on for the rest
)

Pass all=True to register every tool regardless of the individual flags.

Flag Tools Flag Tools
enable_google 14 enable_airbnb 3
enable_amazon 3 enable_glassdoor 4
enable_walmart 7 enable_yelp 3
enable_youtube 15 enable_app_store 3
enable_reddit 12 enable_google_play 3
enable_tiktok 11 enable_sec 6
enable_tiktok_shop 8 enable_redfin 3
enable_instagram 12 enable_companies_house 4
enable_x 11 enable_g2 3
enable_linkedin 9 enable_capterra 3
enable_threads 6 enable_google_ads 3
enable_kuaishou 14 enable_meta_ads 3
enable_ebay 3 enable_target 4
enable_home_depot 3 enable_zillow 3
enable_booking 3 enable_tripadvisor 4
enable_indeed 4 enable_extract 1

Tools

Each tool is named scavio_<platform>_<action> (scavio_google_search, scavio_ebay_search, scavio_sec_filings, scavio_meta_ads_search), takes flat scalar arguments, and returns the structured Scavio JSON response. Errors come back as {"error": "..."} rather than raising, so a failed call never crashes the run.

scavio_extract is the exception to the naming rule: it is a core endpoint rather than a platform, and it is the one to reach for when the agent has a URL and needs the page behind it.

tools = get_scavio_tools(enable_extract=True)  # scavio_extract(url, format=, mode=)

Start with the resolver on lookup-first platforms

Five platforms are keyed by an id you have to look up first. Give the agent the resolver alongside the endpoint, or it will guess an id and get a 404:

Platform Resolve with Then call
SEC EDGAR scavio_sec_lookup (ticker → CIK) scavio_sec_filings, scavio_sec_facts, ...
Tripadvisor scavio_tripadvisor_locations scavio_tripadvisor_search, scavio_tripadvisor_reviews
Glassdoor scavio_glassdoor_companies scavio_glassdoor_reviews, scavio_glassdoor_salaries
Google Ads Transparency scavio_google_ads_advertisers scavio_google_ads_search, scavio_google_ads_creative
Companies House scavio_companies_house_search scavio_companies_house_officers, ...

Credits

Most tools cost 1 credit per call: every Google, Amazon, Reddit, X, TikTok, TikTok Shop, eBay, Target, Zillow, Redfin, Airbnb, Booking.com, App Store, Glassdoor, SEC EDGAR, Companies House, Google Ads Transparency and Meta Ad Library tool, plus most YouTube and LinkedIn ones. The exceptions:

Tool Credits
Home Depot, Google Play, Tripadvisor, Yelp, Indeed, Capterra (all tools) 2
scavio_youtube_search, scavio_youtube_shorts 2
scavio_youtube_streams 3
scavio_youtube_transcript 8
G2 (all tools) 5
scavio_instagram_user_posts 2
scavio_instagram_post, scavio_instagram_comment_replies 8
every other scavio_instagram_* 10
scavio_linkedin_person_posts, scavio_linkedin_company_posts, scavio_linkedin_post_comments, scavio_linkedin_search_jobs 10
scavio_linkedin_job 30

Four surfaces are body-priced — the cost depends on what you send, not on which tool you call:

Tool Credits
scavio_walmart_search, scavio_walmart_category 1 on domain="com" or "ca", 2 on "com.mx"
scavio_threads_* 2 addressed by user_id, 4 by username
scavio_kuaishou_* per endpoint: 1, 2, 10, or 40 for scavio_kuaishou_videos_batch
scavio_extract 1 on mode="normal" or "advanced", 2 on "ultra"

Each tool's own description states its price. See scavio.dev/docs.

Notes on specific platforms

  • Walmartdevice, delivery_zip and store_id were retired. Sending them is not an error: the response carries a warnings[] array saying they were ignored. domain was not retired and is the price-bearing parameter. scavio_walmart_offers returns the buy-box seller only, not the full offer list, and scavio_walmart_seller_products returns roughly the first 40 server-rendered items with no pagination at all.
  • Amazoncountry (a two-letter marketplace code; the UK is gb, not uk) replaced domain in 2026-07, and sort_by, pages, category_id, merchant_id, language, currency, device, zip_code and autoselect_variant are gone. The marketplace ignored all of them, so they were removed rather than kept as silent no-ops. Rank and filter yourself.
  • Google — v2 only. /api/v1/google was sunset on 2026-08-04 and returns 410, and the v1 vocabulary (country_code, language, page, search_type, light_request) went with it. start is a 0-based result offset, not a page.
  • LinkedIn — five endpoints (person contact info, company people, company jobs, people search, post search) were withdrawn upstream and always return 410. They are deliberately not tools. Use scavio_linkedin_search_jobs with a company name instead of the retired per-company job listing.
  • eBayscavio_ebay_seller is a storefront profile, not a catalogue. To page a seller's inventory, call scavio_ebay_search with seller set and no query.

Also available via MCP

If you would rather not install anything, the same endpoints are served by the hosted MCP server:

from agents import Agent
from agents.mcp.server import MCPServerStreamableHttp

server = MCPServerStreamableHttp(
    name="scavio",
    params={"url": "https://mcp.scavio.dev/mcp", "headers": {"x-api-key": "sk_live_..."}},
)
agent = Agent(name="Search Assistant", mcp_servers=[server])

Links

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

openai_agents_scavio-0.4.0.tar.gz (145.7 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

openai_agents_scavio-0.4.0-py3-none-any.whl (46.7 kB view details)

Uploaded Python 3

File details

Details for the file openai_agents_scavio-0.4.0.tar.gz.

File metadata

  • Download URL: openai_agents_scavio-0.4.0.tar.gz
  • Upload date:
  • Size: 145.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/7.0.0 CPython/3.12.13

File hashes

Hashes for openai_agents_scavio-0.4.0.tar.gz
Algorithm Hash digest
SHA256 2592168ffec1194e6cf5e728fe58c9644e788c283c330f06526c4fc65ad2ee6b
MD5 de06acb5781bdf723f6106cc62df25f9
BLAKE2b-256 fa1171a7b7e67a38735fc2899321f8c8bc67311c11c8e88a1a74df2062df757a

See more details on using hashes here.

File details

Details for the file openai_agents_scavio-0.4.0-py3-none-any.whl.

File metadata

File hashes

Hashes for openai_agents_scavio-0.4.0-py3-none-any.whl
Algorithm Hash digest
SHA256 e0a6dbde07d6e48a1d2fa5e5f439aeb8c8d31db34be58eda9c3f2843ddb17c4a
MD5 ca3f65c02eb1954a5cc9bae6429b0ed1
BLAKE2b-256 021148b1dfda26bb21023116ba46d6890bd8ba4decd30d7a015ab5ef2ca34f16

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page