cURL
curl --request POST \ --url https://api.search1api.com/search \ --header 'Authorization: Bearer <token>' \ --header 'Content-Type: application/json' \ --data '{ "query": "<string>", "search_service": "google", "max_results": 50, "crawl_results": 5, "image": true, "include_sites": [ "<string>" ], "exclude_sites": [ "<string>" ], "language": "<string>", "time_range": "day" }'
{ "searchParameters": { "query": "<string>", "search_service": "google", "max_results": 5, "crawl_results": 0, "image": false, "include_sites": [], "exclude_sites": [], "language": "<string>", "time_range": "day" }, "results": [ { "title": "<string>", "link": "<string>", "snippet": "<string>", "content": "<string>" } ] }
Performs a search
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
Search parameters
Send a single search request
Successful Response
The response is of type object.
object