v1.0 — Production Ready

Reese84 iOS API

Powerful WAF bypass solution for iOS applications. High success rate, automatic device rotation, and simple integration.

https://api.wlxd.pro
2000 req/min per IP
// 01

Authentication

All API requests require authentication via the X-API-Key header. Contact @wld_ads to obtain your API key.

Header Format

USERNAME|API_KEY — Your username followed by your unique API key

Example Request
curl -X POST https://api.wlxd.pro/solve/reese84 \\
  -H "X-API-Key: USERNAME|API_KEY" \\
  -H "Content-Type: application/json" \\
  -d '{"appBundleID":"com.example.app","appVersion":"1.0.0","proxyUrl":"host:port:user:pass"}'
// 02

Solve Challenge

POST /solve/reese84

Generates a valid Reese84 token for the specified iOS application. Returns token, cookies, and device fingerprint.

Request Parameters

Parameter Type Required Description
appBundleID string REQUIRED App bundle (e.g., com.example.app)
appVersion string REQUIRED App version (e.g., 13.82.2)
proxyUrl string REQUIRED Format: host:port:user:pass
Request Body
{
  "appBundleID": "com.example.app",
  "appVersion": "13.82.2",
  "proxyUrl": "proxy.example.com:8080:user:pass"
}
Success Response (200 OK)
{
  "success": true,
  "expires_in": 600,
  "token": "3:AbC123...xyz.signature",
  "cookies": [
    { "name": "reese84", "value": "..." }
  ],
  "ios_version": "17.4",
  "device_id": "550E8400-...",
  "model": "iPhone 13",
  "system": "iPhone14,5"
}
Unsupported App Response
{
  "error": "Unsupported App, Contact @wld_ads To Add."
}
// 03

Update Counter

POST /counter/reese84

Updates the request counter in an existing token. Use after each request to maintain token validity.

Request Parameters

Parameter Type Required Description
token string REQUIRED Token from /solve/reese84
request_number integer REQUIRED Increment: 1, 2, 3...
Request Body
{
  "token": "3:AbC123...xyz.signature",
  "request_number": 2
}
Success Response
{
  "success": "true",
  "token": "3:AbC123...xyz.newSignature"
}
// 04

Error Codes

401 Unauthorized

Invalid API Key. Check your X-API-Key header format.

403 Forbidden

IP banned for 10 minutes. Too many failed auth attempts.

429 Too Many Requests

Rate limit: 2000 requests per minute exceeded.

413 Payload Too Large

Request body exceeds 10MB limit.

200 success: false

Request processed but failed. Check error message.

200 error

Unsupported app. Contact @wld_ads to add new apps.

// 05

Rate Limits

Current Limits

  • 2000 requests/minute per IP
  • 10 failed attempts = 10 min ban
  • Auto-reset (rolling window)

Need higher limits? Contact @wld_ads for custom plans.