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
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"}'
Solve Challenge
/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 |
{
"appBundleID": "com.example.app",
"appVersion": "13.82.2",
"proxyUrl": "proxy.example.com:8080:user:pass"
}
{
"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"
}
{
"error": "Unsupported App, Contact @wld_ads To Add."
}
Update Counter
/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... |
{
"token": "3:AbC123...xyz.signature",
"request_number": 2
}
{
"success": "true",
"token": "3:AbC123...xyz.newSignature"
}
Error Codes
Invalid API Key. Check your X-API-Key header format.
IP banned for 10 minutes. Too many failed auth attempts.
Rate limit: 2000 requests per minute exceeded.
Request body exceeds 10MB limit.
Request processed but failed. Check error message.
Unsupported app. Contact @wld_ads to add new apps.
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.