Skip to main content
GET
/
api
/
v1
/
top-movers
Top price movers
curl --request GET \
  --url https://api.dexploit.dev/api/v1/top-movers \
  --header 'X-API-Key: <api-key>'
{
  "success": true,
  "data": [
    {
      "pair_address": "<string>",
      "token_address": "<string>",
      "price_change_pct": 123,
      "current_price": 123,
      "volume_sol_24h": 123
    }
  ]
}

Documentation Index

Fetch the complete documentation index at: https://docs.dexploit.dev/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

X-API-Key
string
header
required

Query Parameters

timeframe
enum<string>
required

Window over which to compute price change.

Available options:
1m,
5m,
15m,
1h,
4h,
1d
limit
integer
default:25
Required range: 1 <= x <= 100

Response

Top movers

success
enum<boolean>
Available options:
true
data
object[]