60 seconds to first request

Make Your First Request

Get up and running with Scrappa in less time than it takes to make coffee. Follow these simple steps to start pulling 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.

Ready to Build?

Try our interactive playground to test endpoints without writing code.

Open Playground