Noname
Noname-category challenge — regular or Enterprise build, including the invisible variant.

POSThttps://captcha.solvium.io/v2/tasks/noname
Headers
| Name | Type | Required | Default | Example |
|---|---|---|---|---|
| x-solvium-authSolvium API key — get one from @solvium_crypto_bot. | Header | Yes | — | IE0B81Vn... |
Body
| Name | Type | Required | Default | Example |
|---|---|---|---|---|
| url | JSON | Yes | — | https://example.com/login |
| site_key | JSON | Yes | — | a5f74b19-9e45-40e0-b45d-47ff91b7a6c2 |
| is_enterpriseSet to true for Enterprise. Pair with rqdata if the site pins a session token. | JSON | No | false | false |
| is_invisibleSet to true for the invisible variant. | JSON | No | false | false |
| rqdataPer-session blob, required by Enterprise deployments that pin a token. | JSON | No | — | … |
| proxy | JSON | No | — | http://user:pass@host:8080 |
Response
Poll Task Status with the returned task_id until it's completed.
Example
Python
from solvium import Solvium
solution = Solvium(api_key="YOUR_API_KEY").noname_sync(
url="https://example.com/login",
site_key="a5f74b19-9e45-40e0-b45d-47ff91b7a6c2",
)
print(solution["token"])