ScavioScavio
FeaturesPricingDocs
Sign InGet Started

Documentation

  • Introduction
  • Quickstart
  • Google Search API
  • YouTube API
  • Amazon API
  • Walmart API
  • Reddit API
  • TikTok API
  • OpenClaw Integration
  • MCP Integration
  • n8n Integration
  • Country Codes
  • Rate Limits
  • Errors

Quickstart

Get your first search results in under 2 minutes.

1. Get Your API Key

Sign up at the Scavio Dashboard and create an API key from the API Keys page. Your key will start with sk_live_ or sk_test_.

2. Make Your First Request

curl -X POST 'https://api.scavio.dev/api/v1/google' \
  -H 'Authorization: Bearer YOUR_API_KEY' \
  -H 'Content-Type: application/json' \
  -d '{"query": "Scavio search API"}'

3. Read the Response

A successful response returns a JSON object with a results array. Each result includes a title, url, and content.

JSON
{
  "results": [
    {
      "title": "Scavio - Search API for Developers",
      "url": "https://scavio.dev",
      "content": "One API to search every platform...",
      "position": 1
    }
  ],
  "query": "Scavio search API",
  "response_time": 450,
  "credits_used": 1,
  "credits_remaining": 999
}

4. Try Advanced Parameters

Add optional parameters to customize your search. This example searches news in the US:

curl -X POST 'https://api.scavio.dev/api/v1/google' \
  -H 'Authorization: Bearer YOUR_API_KEY' \
  -H 'Content-Type: application/json' \
  -d '{
    "query": "AI startups funding",
    "search_type": "news",
    "country_code": "us",
    "language": "en"
  }'

5. Use the Python SDK

The official Python SDK provides a typed client with sync and async support, built-in rate limiting, and access to all 6 data sources.

pip install scavio

6. Use with LangChain

Install langchain-scavio to use Scavio as LangChain tools in your agents. Supports Google, Amazon, Walmart, and YouTube.

pip install langchain-scavio

Next Steps

  • Google Search API -- full endpoint reference with response format
  • YouTube API -- search and metadata
  • Amazon API -- product search and details
  • Walmart API -- product search and details
  • Country Codes -- supported country codes reference
ScavioScavio

Real-time search API for AI agents. Search every platform, not just Google.

Product

  • Features
  • Pricing
  • Dashboard
  • Affiliates

Developers

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

Alternatives

  • Tavily Alternative
  • SerpAPI Alternative
  • Firecrawl Alternative
  • Exa Alternative

Tools

  • JSON Formatter
  • cURL to Code
  • Token Counter
  • All Tools

© 2026 Scavio. All rights reserved.

Featured on TAAFT
Terms of ServicePrivacy Policy