Introduction

Scavio is a search API that lets developers retrieve structured search results from multiple platforms with a single POST request. No scraping, no browser automation -- just clean JSON data from a simple API call.

Supported Platforms

PlatformEndpointStatus
Google SearchPOST /api/v1/googleAvailable
YouTubePOST /api/v1/youtubeAvailable
AmazonPOST /api/v1/amazonAvailable
TikTokPOST /api/v1/tiktokComing soon
InstagramPOST /api/v1/instagramComing soon

Key Features

  • Multi-platform search -- Google, YouTube, and Amazon available today. TikTok and Instagram coming soon
  • Advanced parameters -- control search type, country, language, device, pagination, and result depth
  • Fast responses -- results returned in milliseconds
  • Structured data -- titles, URLs, descriptions, knowledge graphs, related searches, and more in clean JSON
  • Credit-based pricing -- start free with 1,000 credits/month. Light requests cost 1 credit, full requests cost 2.
  • Multi-language support -- works with Python, JavaScript, cURL, or any HTTP client

Quick Example

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

Credit Costs

ModeCreditsHow
Light (default)1Omit light_request or do not send it
Full2Send "light_request": false

Next Steps