curl --request POST \
--url https://api.crustdata.com/dataset/web/search \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--header 'x-api-version: <x-api-version>' \
--data '
{
"query": "crustdata"
}
'{
"success": true,
"query": "crustdata",
"timestamp": 1774446515699,
"results": [
{
"source": "web",
"title": "Crustdata: Real-Time B2B Data Broker via API or Data Feed",
"url": "https://crustdata.com/",
"snippet": "People and Company Search for AI. The only platform providing truly real-time data.",
"position": 1
},
{
"source": "web",
"title": "Crustdata - Crunchbase Company Profile & Funding",
"url": "https://www.crunchbase.com/organization/crustdata",
"snippet": "Crustdata builds a robust and easy-to-use set of APIs that solves the problem of getting accurate, fresh data on companies and people.",
"position": 2
},
{
"source": "web",
"title": "Crustdata: Real-time B2B data via simple APIs",
"url": "https://www.ycombinator.com/companies/crustdata",
"snippet": "Crustdata provides live company and people data via APIs and full dataset delivery.",
"position": 3
}
],
"metadata": {
"totalResults": 7,
"failedPages": [],
"emptyPages": []
}
}Performs a web search query and returns search results including titles, URLs, snippets, and positions. Supports geolocation filtering, source selection (news, web, scholar, AI, social), site restriction, date range filtering, and pagination.
curl --request POST \
--url https://api.crustdata.com/dataset/web/search \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--header 'x-api-version: <x-api-version>' \
--data '
{
"query": "crustdata"
}
'{
"success": true,
"query": "crustdata",
"timestamp": 1774446515699,
"results": [
{
"source": "web",
"title": "Crustdata: Real-Time B2B Data Broker via API or Data Feed",
"url": "https://crustdata.com/",
"snippet": "People and Company Search for AI. The only platform providing truly real-time data.",
"position": 1
},
{
"source": "web",
"title": "Crustdata - Crunchbase Company Profile & Funding",
"url": "https://www.crunchbase.com/organization/crustdata",
"snippet": "Crustdata builds a robust and easy-to-use set of APIs that solves the problem of getting accurate, fresh data on companies and people.",
"position": 2
},
{
"source": "web",
"title": "Crustdata: Real-time B2B data via simple APIs",
"url": "https://www.ycombinator.com/companies/crustdata",
"snippet": "Crustdata provides live company and people data via APIs and full dataset delivery.",
"position": 3
}
],
"metadata": {
"totalResults": 7,
"failedPages": [],
"emptyPages": []
}
}Bearer token authentication. Pass your API key as Authorization: Bearer <your_api_key>.
API version to use for request routing and response shape.
2025-11-01 The search query and optional filters.
Request payload for /dataset/web/search. Requires a search query and supports optional geolocation, source, site, date range, and pagination filters.
The search query text. Supports natural language queries and keywords.
1 - 5000"crustdata"
ISO 3166-1 alpha-2 country code to localize search results (e.g., "US", "GB", "JP", "IN").
"US"
List of search sources to query. When omitted, defaults to all available sources.
news, web, scholar-articles, scholar-articles-enriched, scholar-author, ai, social ["news", "web"]Restrict search results to a specific domain (e.g., "linkedin.com" to only return LinkedIn results).
500"linkedin.com"
Unix timestamp (seconds) for the start of the date range filter. Only results published after this date are returned.
1704067200
Unix timestamp (seconds) for the end of the date range filter. Only results published before this date are returned.
1735689600
Whether to attempt bypassing Cloudflare protection on result pages. Increases latency when enabled.
false
Number of search result pages to return. Each page contains approximately 10 results.
x >= 11
Successfully retrieved search results.
Response payload for /dataset/web/search. Contains the search results, query metadata, and result count.
Whether the search request completed successfully.
true
The original search query that was submitted.
"crustdata"
Unix timestamp in milliseconds when the search was performed.
1774446515699
Array of search results ordered by relevance.
Show child attributes
[
{
"source": "web",
"title": "Crustdata: Real-Time B2B Data Broker via API or Data Feed",
"url": "https://crustdata.com/",
"snippet": "People and Company Search for AI. The only platform providing truly real-time data.",
"position": 1
}
]Metadata about the search results.
Show child attributes
{
"totalResults": 7,
"failedPages": [],
"emptyPages": []
}Was this page helpful?