Google SERP
Google Search, News, Trends, Finance, and Shopping data via structured API.
- Search: Web search results with pagination
- News: Google News articles
- Trends: Trending search results and related queries
- Finance: Financial SERP results for stock tickers
- Shopping: Product listings with ratings and pricing
Search
GET /google/search — 2 credits
Search Google and get structured results.
| Param | Type | Required | Default | Description |
|---|---|---|---|---|
q | string | Yes | — | Search query |
num | integer | No | 10 | Number of results |
language | string | No | en | Language code |
country | string | No | us | Country code |
page | integer | No | 1 | Page number |
cURL
curl -H "x-api-key: sk_byc_xxx" \
"https://api.bycrawl.com/google/search?q=openai&num=5"Response
{
"query": "openai",
"organic": [
{
"title": "OpenAI",
"link": "https://openai.com/",
"snippet": "OpenAI is an AI research and deployment company...",
"position": 1,
"sitelinks": []
}
],
"answerBox": null,
"knowledgeGraph": null,
"peopleAlsoAsk": [],
"relatedSearches": []
}News
GET /google/news — 2 credits
Get Google News results for a query.
| Param | Type | Required | Default | Description |
|---|---|---|---|---|
q | string | Yes | — | Search query |
language | string | No | en | Language code |
country | string | No | us | Country code |
cURL
curl -H "x-api-key: sk_byc_xxx" \
"https://api.bycrawl.com/google/news?q=artificial+intelligence"Response
{
"query": "artificial intelligence",
"news": [
{
"title": "AI Breakthrough in 2026...",
"link": "https://example.com/article",
"snippet": "A major breakthrough in artificial intelligence...",
"source": "TechCrunch",
"date": "2 hours ago",
"imageUrl": "https://..."
}
]
}Shopping
GET /google/shopping — 2 credits
Search Google Shopping for products.
| Param | Type | Required | Default | Description |
|---|---|---|---|---|
q | string | Yes | — | Search query |
num | integer | No | 20 | Number of results |
min_price | number | No | — | Minimum price filter |
max_price | number | No | — | Maximum price filter |
country | string | No | us | Country code |
cURL
curl -H "x-api-key: sk_byc_xxx" \
"https://api.bycrawl.com/google/shopping?q=mechanical+keyboard&num=10&country=us"Response
{
"query": "mechanical keyboard",
"shopping": [
{
"title": "Keychron K2 Wireless Mechanical Keyboard",
"price": "$89.99",
"source": "Amazon",
"link": "https://...",
"imageUrl": "https://...",
"rating": 4.5,
"ratingCount": 1234,
"productId": "abc123",
"position": 1
}
]
}Last updated on