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

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

Python

import requests

response = requests.post(
    "https://api.scavio.dev/api/v1/search",
    headers={"Authorization": "Bearer YOUR_API_KEY"},
    json={"query": "best project management tools"},
)

print(response.json())

JavaScript

const response = await fetch("https://api.scavio.dev/api/v1/search", {
  method: "POST",
  headers: {
    "Authorization": "Bearer YOUR_API_KEY",
    "Content-Type": "application/json",
  },
  body: JSON.stringify({ query: "best project management tools" }),
});

const data = await response.json();
console.log(data);

3. Read the Response

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

{
  "results": [
    {
      "title": "10 Best Project Management Tools in 2026",
      "url": "https://example.com/best-pm-tools",
      "description": "Compare the top project management..."
    }
  ],
  "credits_used": 1,
  "credits_remaining": 999
}

Next Steps