Scrappa
60 seconds to first request

Scrappa API Docs

Get up and running with the Scrappa API in less time than it takes to make coffee. Follow these simple steps to start pulling structured data.

1

Get Your API Key

Sign up for a free account and grab your API key from the dashboard. You'll get 500 free credits per month to start.

Create Free Account
2

Make Your First Request

Choose your preferred language and copy the code. Replace YOUR_API_KEY with your actual key.

curl -X GET "https://scrappa.co/api/google/search?q=coffee" \
  -H "X-API-KEY: YOUR_API_KEY"
const response = await fetch('https://scrappa.co/api/google/search?q=coffee', {
  headers: {
    'X-API-KEY': 'YOUR_API_KEY'
  }
});

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

response = requests.get(
    'https://scrappa.co/api/google/search?q=coffee',
    headers={'X-API-KEY': 'YOUR_API_KEY'}
)

data = response.json()
print(data)
<?php
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, 'https://scrappa.co/api/google/search?q=coffee');
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_HTTPHEADER, [
    'X-API-KEY: YOUR_API_KEY'
]);

$response = curl_exec($ch);
$data = json_decode($response, true);
curl_close($ch);

print_r($data);
3

Get Your Results

You'll receive a structured JSON response with organic search results, knowledge graphs, and more.

Expected Response

A structured JSON object containing search results with titles, URLs, descriptions, featured snippets, and rich metadata.

OpenAPI Specification

Import our API spec into Postman, Insomnia, or any OpenAPI-compatible tool.

?

Frequently Asked Questions

The quickest answers developers ask before they ship their first Scrappa integration.

How do I get an API key?

Create a free Scrappa account, open your dashboard, and copy your API key. New accounts get 500 free credits each month, so you can test requests before upgrading.

What endpoints are available?

Scrappa gives you access to 80+ endpoints across Google Search, Google Maps, YouTube, LinkedIn, TikTok, Trustpilot, Google Flights, Google Hotels, and other web data sources.

What does the API return?

Responses are returned as structured JSON so you can work with search results, reviews, videos, business data, and other records without scraping HTML yourself.

Can I test endpoints before building an integration?

Yes. You can use the interactive playground, copy the cURL or SDK examples from the docs, or import the OpenAPI spec into your API client to test requests immediately.

Ready to Build?

Try our interactive playground to test endpoints without writing code.

Open Playground