Skip to main content
POST
/
crawl
/
search
Web Search
curl --request POST \
  --url https://api.crawlkit.com/v1/crawl/search \
  --header 'Authorization: <api-key>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "query": "<string>",
  "options": {
    "language": "tr-TR",
    "region": "",
    "timeRange": "d",
    "maxResults": 30
  }
}
'
{
  "success": true,
  "data": {
    "query": "<string>",
    "totalResults": 123,
    "results": [
      {
        "position": 123,
        "title": "<string>",
        "url": "<string>",
        "snippet": "<string>"
      }
    ],
    "timing": {
      "total": 123
    },
    "creditsUsed": 123,
    "creditsRemaining": 123
  }
}

Authorizations

Authorization
string
header
required

API key with 'ApiKey ' prefix (e.g., ApiKey ck_...)

Body

application/json
query
string
required

Search query

Required string length: 1 - 500
options
object

Response

Default Response

success
enum<boolean>
required
Available options:
true,
false
data
object
required