QuickStart
Two endpoints cover the whole API surface. /v1/search runs a live web search and returns ranked, structured results. /v1/contents extracts the main text of pages you already have URLs for. Both accept a POST with a JSON body and a bearer token.
Search
1https://api.querit.ai/v1/search
1curl -X POST "https://api.querit.ai/v1/search" \2 -H "Accept: application/json" \3 -H "Authorization: Bearer YOUR-API-KEY" \4 -H "Content-Type: application/json" \5 -d '{6 "query": "what does salesforce do",7 "count": 5,8 "filters": {9 "language": "english"10 }11 }'
Full request and response reference, including error codes: Search API reference
Contents
1https://api.querit.ai/v1/contents
1curl --location 'https://api.querit.ai/v1/contents' \2--header 'Content-Type: application/json' \3--header 'Authorization: Bearer YOUR-API-KEY' \4--data '{5 "urls":["https://www.querit.ai/en/docs/overview/about"],6 "format":"text",7 "crawlTimeout":30,8 "extrasMeta":true9}'
Full request and response reference, including error codes: Contents API reference