Skip to main content
POST
/
screener
Filter tokens (Phase-7 V2 screener)
curl --request POST \
  --url https://api.dexploit.dev/screener \
  --header 'Content-Type: application/json' \
  --header 'X-API-Key: <api-key>' \
  --data '
{
  "limit": 25,
  "filters": {
    "volume_sol": {
      "window": "1h",
      "min": 500
    },
    "holders": {
      "min": 100
    },
    "audit": {
      "lp_burnt": true,
      "mint_revoked": true
    },
    "status": "graduated"
  },
  "sort": {
    "by": "trending_score",
    "order": "desc"
  }
}
'
{
  "results": [
    {
      "mint": "<string>",
      "volume_sol": 123,
      "price_per_token": 123,
      "last_ts": 123,
      "first_ts": 123,
      "age_hours": 123,
      "change_pct": 123,
      "buys": 123,
      "sells": 123,
      "curve_pct": 123,
      "liquidity_sol": 123,
      "market_cap": 123,
      "holder_count": 123,
      "top10_pct": 123,
      "dev_held_pct": 123,
      "insider_count": 123,
      "insider_pct": 123,
      "sniper_count": 123,
      "sniper_pct": 123,
      "bundler_count": 123,
      "bundler_pct": 123,
      "graduated_ts": 123,
      "trending_score": 123
    }
  ],
  "total_matches": 123,
  "limit": 123,
  "offset": 123,
  "warnings": [
    "<string>"
  ]
}

Authorizations

X-API-Key
string
header
required

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

Body

application/json
filters
object

Phase-7 V2 screener filters (~40 fields, all optional, combined as AND). Replaces the legacy 6-field ScreenerFilters. Range filters take {min, max}. Volume/change windows default to 1h.

sort
object
limit
integer
default:200
Required range: 1 <= x <= 500
offset
integer
default:0
Required range: x >= 0
compact
boolean
default:false

When true, rows use the compact variant.

Response

Filtered results. Full rows unless compact=true.

results
object[]

Full Phase-7 V2 screener result row (compact=false).

total_matches
integer

Total matching tokens before paging. See x-total-matches-exact.

limit
integer
offset
integer
warnings
string[]