cURL
curl --request POST \ --url https://api.firecrawl.dev/v0/search \ --header 'Authorization: Bearer <token>' \ --header 'Content-Type: application/json' \ --data '{ "query": "<string>", "pageOptions": { "onlyMainContent": false, "fetchPageContent": true, "includeHtml": false, "includeRawHtml": false }, "searchOptions": { "limit": 123 } }'
{ "success": true, "data": [ { "url": "<string>", "markdown": "<string>", "content": "<string>", "metadata": { "title": "<string>", "description": "<string>", "language": "<string>", "sourceURL": "<string>" } } ] }
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
Successful response
The response is of type object.
object