> ## Documentation Index
> Fetch the complete documentation index at: https://docs.uncaptcha.io/llms.txt
> Use this file to discover all available pages before exploring further.

# Datadome Task

> Solve Datadome challenges

### Data

<ParamField body="block_html" type="string" required>
  The HTML content of the Datadome block. Must contain `dd` variable.

  **Example:** `... var dd={'rt':'i','cid':'AHrlqAAAAAMAZAOt-wE_EDkAwm5zPQ==', ...`\
  This can also be a challenge URL: `https://geo.captcha-delivery.com/captcha/...`
</ParamField>

<ParamField body="proxy" type="string" required>
  The proxy used to solve the challenge.

  **Format:** `<http|socks5>://[username:password@]host[:port]`

  **Example:** `http://user:pass@192.168.1.1:8080`
</ParamField>

<ParamField body="url" type="string" required>
  The URL of the page where the block HTML is located.
</ParamField>

<ParamField body="force_slider" type="bool">
  Whether or not we should enforce slider even if we get an Interstitial.\
  In most cases, this should be set to true, as the slider generally produces a better score.

  <Note>
    Forcing slider has almost no impact on speed nor bandwidth used.
  </Note>

  Default: `false`
</ParamField>

<ParamField body="user_agent" type="string">
  The User-Agent header used to solve the challenge.

  <Note>
    Only Chrome browser on Windows x86\_64 is supported.
  </Note>

  **Example:**

  * `Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36`
  * `Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.0.0 Safari/537.36`
  * `...`

  Default: `Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.0.0 Safari/537.36`
</ParamField>

### Data Example

```json theme={null}
{
    "block_html": "...",
    "url": "https://example.com/",
    "proxy": "http://user:password@example.com:8080",
    "force_slider": true,
    "user_agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.0.0 Safari/537.36"
}
```

***

### Solution Parameters

<ParamField body="cookie" type="string" required>
  Solved Datadome cookie, returned in Set-Cookie format.
</ParamField>

### Solution Example

```json theme={null}
{
  "cookie": "datadome=...; Max-Age=31536000; Domain=.example.com; Path=/; Secure; SameSite=Lax"
}
```
