Blazing fast solves
Median solve time of 1.2s with a p95 under 4s. MatchKey patterns are resolved by a dedicated solver farm, not reused sessions.
The fastest Arkose Labs challenge solver built specifically for the Roblox login flow. Send us the challenge, get back a validated token — no browsers, no queues, no manual solving.
$ curl -X POST https://solarkose.online/getToken \
-d '{
"blob": "eyJhbGciOiJFUzI1NiIsImN0eSI6IkFya29zZUx...",
"proxy": "http://user:pass@res.proxies:8080",
"bda": "GMyVpCDuKK2RWHvW.nfGC4O20dXBcYlEz4guORqD%2F6y2dAsoA...
"key": "BDA Secret Key'
✓ 200 OK (1.84s)
$ response
"token": "{"token":"47718ccac6b2dc881.0749753701|r=us-east-1...","pow":false}
The bottleneck
Every Arkose MatchKey prompt adds seconds, friction and failure rate to Roblox automation. Teams burn hours babysitting captchas instead of shipping.
Features
A single API that takes the Arkose MatchKey payload from the login page and returns a usable token.
Median solve time of 1.2s with a p95 under 4s. MatchKey patterns are resolved by a dedicated solver farm, not reused sessions.
Auto-detects the current Arkose version and adapts on release day. No code changes required.
POST to single endpoint https://solarkose.online/getToken with blob, proxy and bda — receive a token. JSON in, JSON out. Idempotent retries built in.
First-party clients for Python, Node.js and Go. Ready-to-run login examples with copy-paste setup.
Expired or rejected tokens are re-solved automatically with backoff — your call just keeps succeeding.
How it works
Collect the Arkose blob from the Roblox login page, your proxy, and the browser data (bda) from your automation session.
POST to https://solarkose.online/getToken with your key. Our solver farm resolves the MatchKey pattern in about a second.
Feed the returned token back into the login page. Challenge cleared, session continues, automation moves on.
Trusted by teams
"Cut our login pipeline time from 40 seconds a session to under 5. The auto-retry on stale tokens saved our weekend launch."
"One endpoint, consistent JSON, zero queueing under burst. We replaced three internal services with a single integration."
"The docs actually show the exact Roblox login integration. We were live in under an hour from signup."
Pricing
No API key, no tiers, no signup. The endpoint just works.
SolArkose is free for everyone. Send a request to the endpoint, get a token back — that's the whole deal.
/getTokenFAQ
SolArkose solves the Arkose Labs MatchKey challenge that Roblox shows during login. You send the challenge payload (blob + proxy + bda) and receive a valid token back through a single REST endpoint.
Yes. We track Arkose version changes continuously and ship compatibility updates before they affect your pipeline, so your integration keeps working after releases.
Just three fields: the Arkose blob from the login page, your proxy, and the browser data (bda). No API key required — send them to https://solarkose.online/getToken and the token comes back in the response.
Median time-to-token is 1.2 seconds. The p95 is under 4 seconds even during peak traffic, and Pro/Scale plans skip the shared queue entirely.
No. Every request is routed through our global residential IP pool so solve traffic never shares your production IP and never leaves a fingerprint.
Automatic retries re-solve rejected or expired tokens without a new request from you. If a solve still fails, it never counts against your quota.
Get started
No API key, no signup. Copy the endpoint, send your first solve request — done.
https://solarkose.online/getToken
# send a solve request — no API key needed
$ curl -X POST https://solarkose.online/getToken \
-H "Content-Type: application/json" \
-d '{
"blob": "...",
"proxy": "...",
"bda": "..."
"key": "..."
}'
# response
{"token": "{"token":"47718ccac6b2dc881.0749753701|r=us-east-1...","pow":false}"}