Overview
What Hyper Solutions does, how the API fits into your scraper, and the mental model that makes everything else in these docs make sense.
Last updated
What Hyper Solutions does, how the API fits into your scraper, and the mental model that makes everything else in these docs make sense.
Hyper Solutions is a payload-generation API for request-based scraping. It generates the sensor data, cookies, and tokens that anti-bot systems (Akamai Bot Manager, Incapsula/Imperva, DataDome, and Kasada) expect from a real browser, so you can access protected sites with plain HTTP requests instead of running a headless browser.
The single most important thing to understand: the API never talks to the target site. It does not fetch pages or solve challenges over the network for you.
Instead, your code owns all traffic to the target. You collect the inputs a challenge needs (script contents, cookies, UUIDs, your IP, your User-Agent), send those inputs to *.hypersolutions.co, and get back the payload a real browser would have produced. You then POST that payload to the target yourself.
Because your code owns steps 1 and 5, the quality of your HTTP client matters as much as the payload. When a request is blocked even though the generated payload looks correct, the cause is almost always in your request (the TLS fingerprint, header order, cookies, or IP) not in the payload. That is why the Core Requirements page exists and why every integration guide repeats them.
A browser-grade TLS client (standard HTTP libraries are blocked on sight).
Exact browser header order, including HTTP/2 pseudo-headers.
Session consistency: the same User-Agent, TLS fingerprint, IP, and header order for the whole flow.
Sticky proxies whose IP matches what you send to the API.
See Core Requirements for the details.
Akamai Bot Manager
_abck sensor data, SBSD payloads, SEC-CPT (428) proof-of-work, pixel
Incapsula / Imperva
reese84 sensors (static + dynamic), ___utmvc cookies
DataDome
interstitial + slider payloads, tags telemetry
Kasada
challenge tokens, per-request proof-of-work, Vercel BotID (x-is-human)
Quickstart: get an API key and a working SDK in a few minutes.
Core Requirements: the non-negotiables every integration needs.
Request-Based Basics: the concepts behind TLS fingerprinting and header order.
Pick your anti-bot: head to the matching guide (Akamai, Incapsula, DataDome, or Kasada) and follow its Getting Started.
Last updated

