Skip to main content
GET
/
credits
RPS-tier usage snapshot
curl --request GET \
  --url https://api.dexploit.dev/credits \
  --header 'X-API-Key: <api-key>'
{
  "rps_cap": 123,
  "rps_window_secs": 60,
  "current_window_used": 123,
  "current_window_remaining": 123,
  "current_window_reset_secs": 123,
  "monthly_used": 123,
  "monthly_used_note": "informational; no monthly cap on Dexploit",
  "tier_features": {
    "smart_money_access": true,
    "whales_access": true
  }
}

Authorizations

X-API-Key
string
header
required

Preferred for swaps-api endpoints (/swaps/*, /stats/*, /trending, /pool-events).

Response

200 - application/json

Usage snapshot

RPS-tier usage snapshot for the authenticated API key.

tier
enum<string>
Available options:
free,
developer,
pro,
enterprise
rps_cap
integer

Burst cap = rps_cap × rps_window_secs per window.

rps_window_secs
integer
Example:

60

current_window_used
integer
current_window_remaining
integer
current_window_reset_secs
integer
monthly_used
integer

Cumulative request count this calendar month. Informational only — no cap.

monthly_used_note
string
Example:

"informational; no monthly cap on Dexploit"

tier_features
object