Datadome

TasksUpdated 1/19/2026
POST
https://solver.solverify.net/createTask
  • Parameters:
    • clientKey - Your API key
    • websiteURL - The target website URL where the captcha was triggered
    • captchaUrl - The full DataDome captcha URL (starts with https://geo.captcha-delivery.com/interstitial/...)
    • useragent - User-Agent string to use for the request
    • proxyType - Proxy type allowed: http
    • proxyAddress - Proxy IP address or hostname
    • proxyPort - Proxy port
    • proxyLogin - Login for proxy (optional)
    • proxyPassword - Password for proxy (optional)

Example:

{
  "clientKey": "YOUR_API_KEY",
  "task": {
    "type": "datadome",
    "websiteURL": "https://accounts.shutterstock.com/login",
    "captchaUrl": "https://geo.captcha-delivery.com/interstitial/?initialCid=AHrlqAAAAAMA...",
    "useragent": "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36 Edg/142.0.0.0",
    "proxyType": "http",
    "proxyAddress": "1.1.1.1",
    "proxyPort": "8080",
    "proxyLogin": "username",
    "proxyPassword": "password"
  }
}

Response Example:

{
  "errorId": 0,
  "taskId": "UUID"
}

Result Example:

{
  "errorId": 0,
  "status": "completed",
  "solution": {
    "value": "",
    "cookies": {
      "datadome": "3qVi5y0ySWd4RyHLMtm"
    },
    "useragent": "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36 Edg/142.0.0.0"
  },
  "errorCode": null,
  "errorDescription": null
}