boltQuickstart

Get a token from /solve in a few calls.

1

Get your API key

You’ll use this as apiKey in the /solve request body.

2

Check your balance (optional)

curl -sS "https://key.devioussolver.com/key/YOUR_API_KEY"
3

Call /solve

Send a full JSON body with apiKey, fingerprintData, and requestData.

curl -sS "https://api.devioussolver.com/solve" \
  -H "content-type: application/json" \
  -d '{
    "apiKey": "YOUR_API_KEY",
    "fingerprintData": {
      "challengeUrl": "https://arkoselabs.roblox.com",
      "documentReferrer": "",
      "targetLocation": "https://www.roblox.com/login",
      "titleTab": "Log in to Roblox",
      "windowAncestorOrigins": [],
      "windowTreeIndex": [],
      "windowTreeStructure": "[[]]"
    },
    "requestData": {
      "blobExchange": "BLOB_HERE",
      "proxy": "user:pass@ip:port",
      "publicKey": "476068BF-9607-4799-B53D-966BE98E2B81",
      "siteUrl": "https://www.roblox.com",
      "cookies": "cookie1=value1; cookie2=value2; cookie3=value3",
      "capiMode": "lightbox",
      "styleTheme": "modal"
    }
  }'
4

Read the result

  • If solved: true, use token.

  • If solved: false, retry with a better proxy/blob.

Full details: DeviousSolver API.

circle-exclamation

Want a copy/paste test setup?

Use Testing the API for ready-to-run terminal commands.

Last updated