GET /v1/payouts

Get a list of payouts.

Query parameters (all optional):

  • start: offset from the first entry (default: 0)

  • limit: number of entries to return (default: 100, max: 100)

  • startTimestamp: start of the timeframe to query (default: 2 months ago). In seconds.

  • endTimestamp: end of the timeframe to query (default: now). In seconds.

Body response:

{
    "limit": 100,
    "total": 250,
    "start": 0,
    "payouts": [
        {
            "id": "69f5f97d-591a-4d5f-a4c2-ed96d5a6a168",
            "asset": "ETH",
            "amount": 0.0001,
            "sourceId": "", // if any source set
            "chainId": 1,
            "type": "mev",
            "reference": "0x.....", // transaction hash that generated this payout
            "generatedBySourceId": "", // optional, if generated by a source
            "payoutId": "", // populated if payout entry was paid
            "createdAt": "2025-06-10T12:05:30Z",
            "status": "PENDING", // or "PAID"
        }
    ]
}

Last updated

Was this helpful?