terminal'Gimme The Loot' Endpoint

The all-in-one endpoint that returns hot mints, their markets, ALUTs, priority fees, and Jito tips in a single call. Highly configurable, actionable arbitrage markets.

POST https://api.getfomo.bot/loot

Request

curl -X POST https://api.getfomo.bot/loot \
  -H "Content-Type: application/json" \
  -H "x-api-key: your-api-key-here" \
  -d '{
    "base_mints": ["So11111111111111111111111111111111111111112"],
    "exclude_mints": [],
    "max_mint_count": 1,
    "aggregation_window": 300,
    "rank_by": "momentum",
    "min_roi": 100,
    "min_volume": 2000,
    "min_txs": 15,
    "min_market_cap": 0,
    "max_market_cap": 100000000,
    "markets_per_mint": {
      "min_count": 2,
      "max_count": 4,
      "min_liquidity_usd": 500,
      "min_vol": 0,
      "min_txs": 10,
      "rank_by": "volume"
    },
    "from_wallets": [],
    "from_bots": [],
    "include_aluts": true,
    "include_priority_fees": true,
    "include_jito_tips": false,
    "exclude_dexes": ["whirLbMiicVdio4qvUfM5KAg6Ct8VwpYzGff3uctyCc"]
  }'

Body Fields

Field
Type
Default
Description

base_mints

string[]

["So111..."]

Target base mints (wSOL, USDC, etc.)

exclude_mints

string[]

[]

Quote mints to exclude from results

max_mint_count

number

10

Maximum mints to return (max 20)

aggregation_window

number

3600

Lookback window in seconds (max 43200)

rank_by

string

"momentum"

Ranking metric (see Mint Filter Metrics)

min_roi

number

0

Minimum ROI in basis points

min_volume

number

0

Minimum USD volume (arbitrage)

min_txs

number

5

Minimum successful arbitrage transactions

min_market_cap

number

0

Minimum market cap in USD (0 = disabled)

max_market_cap

number

100000000

Maximum market cap in USD (0 = disabled, default 100M)

markets_per_mint

object

See below

Market filtering and ranking options (see below)

from_wallets

string[]

[]

Only include transactions from these signers

from_bots

string[]

[]

Only include transactions from mev bots. Option: smb, notarb

include_aluts

boolean

false

Include Address Lookup Tables

include_priority_fees

boolean

false

Include priority fee estimates

include_jito_tips

boolean

false

Include jito tip estimates

include_dexes / exclude_dexes

string[]

[]

Options: 'include_dexes' or 'exclude_dexes'. Array of program IDs to include/exclude from computed results.

'Markets Per Mint' Object

Field
Type
Default
Description

min_count

number

2

Minimum markets required per mint (2-10)

max_count

number

4

Maximum markets per mint (2-10)

min_liquidity_usd

number

100

Minimum pool liquidity in USD (0 = disabled)

min_vol

number

0

Minimum USD volume (arbitrage) in aggregation window (0 = disabled)

min_txs

number

0

Minimum transaction count in window (0 = disabled)

rank_by

string

"volume"

How to rank markets: volume, liquidity, txs

Response

Last updated