terminalWallet Transactions (Wins) Endpoint

Pull the receipts for any wallet — returns all successful arbitrage transaction signatures (and total count) for a given signer within a set aggregation window.

Perfect for tracking performance, auditing a competitor, or building leaderboards.

Note: we do NOT track dust transactions < 0.00005 SOL trade sizes.

POST https://api.getfomo.bot/wallet/wins

Request

curl -X POST https://api.getfomo.bot/wallet/wins \
  -H "Content-Type: application/json" \
  -H "x-api-key: your-api-key-here" \
  -d '{
    "wallet": "hifoTy5geDwq2SG32J7RXjLgB89UJGrtYYESA2dSYCh",
    "aggregation_window": 3600,
    "from_bots": []
  }'

Body Fields

Field
Type
Default
Description

wallet

string

--

Wallet address (signer) to fetch transactions for.

aggregation_window

number

3600

Lookback window in seconds (max 43200).

from_bots

string[]

[]

Filter by MEV bots. Options: smb, notarb, (empty = no bot specific filtering)

Response

{
  "success": true,
  "count": 10,
  "transactions": [
    "5abc123def456...", 
    "7xyz789ghi012...", 
    "9jkl345mno678...", 
    "2pqr901stu234...", 
    "4vwx567yza890...",
    ...
  ]
}

Last updated