> For the complete documentation index, see [llms.txt](https://docs.vsat.dev/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.vsat.dev/understanding-datadome/dd-surfaces.md).

# The three surfaces

DataDome challenges in three shapes. Which one you get is chosen by the tenant's policy and your trust level.

## tags: the always-on signal

Every protected page loads DataDome's `tags` script, which collects \~228 signals (canvas, WebGL, fonts, timing, feature detection, a V8 call-stack fingerprint) and POSTs them to `/js/`. This runs **even when you are not challenged**: it is how DataDome scores you for next time. Solved by [`POST /tags`](/endpoints/tags.md).

## interstitial: the device check

A `403` carrying `dd={'rt':'i'}` is an **interstitial**: a full-page device check that runs a heavier JS bundle (module 872) and POSTs a `plv3` payload. Clear it and you get a fresh `datadome` cookie and a redirect back to the page. This is the common desktop challenge. Solved by [`POST /interstitial`](/endpoints/interstitial.md).

## slider: the captcha

A `403` carrying `dd={'rt':'c'}` is a **slider captcha**. The simple (`noPuzzle`) variant is a "slide to confirm" with a deterministic offset, with no image gap to find; what is graded is the telemetry of the drag plus a canvas/worker fingerprint. Solved by [`POST /slider`](/endpoints/slider.md).

{% hint style="info" %}
️ A **cold** slider (served on request one, no interstitial first) on a Windows UA is exit-reputation gated (a real browser is hard-blocked there too) and is refused with `422`. A **chained** slider (after an interstitial) is solvable.
{% endhint %}


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://docs.vsat.dev/understanding-datadome/dd-surfaces.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
