Endpoint docs and playground examples are owned by the API’s publisher. APISeeker-operated APIs are maintained by the platform team.
SERP API docs
Fetch search engine results page snapshots for a query.
Authentication
API key (header: X-API-Key)
Send your key on every request. Do not put keys in client-side code or public repos. Rotate keys from the dashboard if a secret is exposed.
X-API-Key: YOUR_API_KEYRate limits
Default catalog limit: From 5 req/min. Plan-specific limits apply after you subscribe. When throttled, expect 429 with a retryable response — back off and retry with jitter.
- Search SERP: Plan-based
- News SERP: Plan-based
Errors
Errors return JSON with a machine-readable code and message. Common platform codes:
- 401 — missing or invalid API key
- 403 — key valid but not entitled for this API or plan
- 404 — resource or path not found
- 429 — rate limit exceeded; retry later
- 5xx — upstream or platform failure; retry with backoff
Endpoint-specific errors are listed under each endpoint below.
Versioning
Current documented version: v1. Prefer pinning the version path shown in examples. Breaking changes ship under a new version; check the changelog for platform updates.
Search SERP
Return organic results for a query.
Parameters
| Name | In | Type | Required | Description |
|---|---|---|---|---|
| q | query | string | Yes | Search query |
| gl | query | string | No | Country code, e.g. in |
Example code
curl -s "https://serpx.apiseeker.com/v1/serp" \
-H "X-API-Key: YOUR_API_KEY"Response example
{
"query": "gstin api",
"results": [
{
"position": 1,
"title": "GSTIN Verification API — API Seeker",
"url": "https://apiseeker.com/api/gstin-verification",
"snippet": "Validate Indian GSTIN numbers…"
}
]
}Errors
- 400 — Missing query
- 401 — Missing or invalid API key
News SERP
Return news results for a query.
Parameters
| Name | In | Type | Required | Description |
|---|---|---|---|---|
| q | query | string | Yes | Search query |
Example code
curl -s "https://serpx.apiseeker.com/v1/serp/news" \
-H "X-API-Key: YOUR_API_KEY"Response example
{
"query": "gstin api",
"results": [
{
"title": "GST updates",
"url": "https://example.com",
"source": "News"
}
]
}Errors
- 400 — Missing query
Playground
API Playground
SERP API
serpx.apiseeker.comhttps://serpx.apiseeker.com/v1/serp?q=gstin+apiResponse headers
Send a request to see headers.
Response body
Response will appear here.
Generated snippets
curl -s "https://serpx.apiseeker.com/v1/serp" \
-H "X-API-Key: YOUR_API_KEY"