ScavioScavio
ToolsPricing
Sign InsGet Startedg
Quick StartAPI & SDKsEcosystem

Python SDK Quickstart

The official scavio package gives you a typed, synchronous and asynchronous client for every Scavio endpoint. Get your first search running in under two minutes.

Install

Bash
pip install scavio

Authenticate

Pass your API key directly, or set the SCAVIO_API_KEY environment variable and the client picks it up automatically.

Python
from scavio import ScavioClient

client = ScavioClient(api_key="sk_live_your_key")  # or set SCAVIO_API_KEY

Your first search

client.search() is a shortcut for Google web search. Every platform is also available under its own namespace.

Python
results = client.search("Best AI Model 2026")
print(results["organic_results"][0]["title"])

# Per-platform namespaces
client.google.search("Best AI Model 2026")
client.youtube.search("drone footage 4k")
client.amazon.search("wireless earbuds")
client.reddit.search("best vector database")

Async

Use AsyncScavioClient for concurrent workloads. It exposes the same namespaces and methods with await.

Python
import asyncio
from scavio import AsyncScavioClient

async def main():
    async with AsyncScavioClient(api_key="sk_live_your_key") as client:
        results = await client.google.search("Best AI Model 2026")
        print(results)

asyncio.run(main())

See the Python SDK Reference for the full client options and every namespace method.

PreviousReddit Trending SearchesNextSDK Reference
ScavioScavio

One scraper API for every social, search and ecommerce platform. Built for AI agents.

Product

  • Features
  • Pricing
  • Dashboard
  • Affiliates

Developers

  • Documentation
  • API Reference
  • Quickstart
  • MCP Integration
  • Python SDK

Alternatives

  • Tavily Alternative
  • SerpAPI Alternative
  • Firecrawl Alternative
  • Exa Alternative
  • Serper Alternative
  • Tavily vs Scavio
  • SerpAPI vs Scavio
  • All alternatives
  • Compare Scavio vs alternatives

Search APIs

  • Google Search API
  • Amazon Product API
  • YouTube API
  • Reddit API
  • Walmart Product API
  • TikTok API
  • Instagram API

Tools

  • All Tools

© 2026 Scavio. All rights reserved.

Featured on TAAFT
Terms of ServicePrivacy Policy