Retrieve search results or queue a search for later retrieval
Retrieve search results or queue a search for later retrieval. Supports Google engine with geotargeting by country, subdivision, and city. Returns structured SERP data. Pagination billing: call the first page normally and save billing.requestId from the Orthogonal /v1/run response. For later page, offset, or cursor calls on the same logical search, pass parentRequestId with unchanged non-pagination parameters. Valid continuation calls still get their own request IDs and quoted price, but are charged 0. Changing filters starts a new billable request.
Paid test badge: not yet. The checks above are free: we call the tool without paying and read the payment request it sends back. The Verified badge needs paid calls whose answers match the promised output, and nobody can buy a badge.
Endpoint
GET https://x402.orthogonal.com/joinmassive/search
| Category | Market data |
|---|---|
| Provider host | x402.orthogonal.com |
| Networks | eip155:143, eip155:8453 |
| Payment schemes | exact |
| Self-reported calls, 30 days | 1 from 1 payers (the provider's figure, not ours) |
Our checks, last 30 days
| Day | Result | HTTP | Asked | Time |
|---|---|---|---|---|
| 2026-09-27 | valid payment request | 402 | $0.0125 | 377 ms |
Example input (from the provider)
{
"method": "GET",
"queryParams": {
"format": "json",
"terms": "terms"
},
"type": "http"
}
Promised output schema (from the provider)
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"method": {
"enum": [
"GET"
],
"type": "string"
},
"queryParams": {
"properties": {
"awaiting": {
"description": "Lazy features to wait for (ai, answers, ads); repeatable",
"type": "string"
},
"callback": {
"description": "Encoded callback URL or SQS queue URL/ARN for async notification",
"type": "string"
},
"city": {
"description": "City name",
"type": "string"
},
"country": {
"description": "Two-letter ISO country code",
"type": "string"
},
"device": {
"description": "Device name to emulate",
"type": "string"
},
"display": {
"description": "Display language for the search interface",
"type": "string"
},
"engine": {
"description": "Search engine (google)",
"type": "string"
},
"expiration": {
"description": "Cache expiration in days (0 disables)",
"type": "integer"
},
"format": {
"default": "html",
"description": "Output format accepted by Massive: html or json. Defaults to html when omitted.",
"example": "json",
"type": "string"
},
"language": {
"description": "Language name or ISO code",
"type": "string"
},
"mode": {
"description": "sync or async mode",
"type": "string"
},
"offset": {
"description": "Initial results to skip For later offset pages of the same logical search, keep non-pagination parameters unchanged and pass top-level parentRequestId from the first Orthogonal /v1/run response.",
"type": "integer"
},
"serps": {
"description": "Number of results pages (1-10, default 1)",
"type": "integer"
},
"size": {
"description": "Results per page (0-100)",
"type": "integer"
},
"subdivision": {
"description": "First-level subdivision code",
"type": "string"
},
"terms": {
"description": "The broad or exact word or phrase to query",
"type": "string"
},
"url": {
"description": "Encoded results page URL (up to 2047 chars); overrides other params",
"type": "string"
},
"uule": {
"description": "Proprietary encoded string for emulating search location",
"type": "string"
}
},
"type": "object"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}