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.
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 AccountMake 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);
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.
Explore More Endpoints
Check out our most popular APIs to supercharge your application.
Google Search
Organic results, knowledge graphs, and more
YouTube Search
Find videos, channels, and playlists
Google Maps
Local businesses with reviews and photos
Featured marketplace API
Vinted API docs
Search Vinted marketplace listings, fetch full item details, compare similar items, and inspect seller profiles from the documentation hub.
Search Items
Find listings by query, category, brand, country, and price.
Item Details
Get listing photos, prices, descriptions, seller data, and metadata.
Similar Items
Compare related listings for price research and resale workflows.
User Profile
Review seller profile fields, ratings, and public account details.
OpenAPI Specification
Import our API spec into Postman, Insomnia, or any OpenAPI-compatible tool.
Explore related docs
Jump between setup, pricing, MCP, and the full API reference when you are evaluating how to integrate Scrappa.
Homepage
See the main product overview and comparison entry points.
Pricing
Review credits, calculator, and competitor pricing comparisons.
MCP integration
Connect Scrappa to Claude, Cursor, VS Code, and other MCP clients.
API reference
Browse the full API reference and OpenAPI-powered endpoint docs.
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.