Orderbook V2

Fetch public orderbook rows in the table format, including pagination metadata and enriched pricing fields.

get/v2/orderbook/table

Query parameters

currencystring required

Fiat currency code

Example:USD
paymentPlatformstring

Optional payment platform filter

Example:venmo
sortBy'price' | 'available' | 'limits' | 'apr'

Sort field

Example:price
sortDirection'asc' | 'desc'

Optional sort direction. Defaults to asc for price and desc for available/limits/apr.

Example:asc
chainIdinteger nullable

Destination chain ID

Example:8453
tokenstring

Destination token address

Example:0x833589fcd6edb6e08f4c7c32d4f71b54bda02913
publicOnlyboolean

When true, exclude whitelist-gated deposits from the orderbook response

limitinteger

Maximum number of orderbook rows to return

Example:200
offsetinteger nullable

Number of matching rows to skip before returning entries

amountstring

Optional requested USDC amount used to filter rows by min, max, and available limits

Example:100
showSmallOrdersboolean

When true, include rows whose available notional value is below the dust threshold

hideExtremeSpreadboolean

When true, hide rows whose absolute spread exceeds the extreme-spread threshold

Example:true
sellerAutomatedRelease'include' | 'exclude' | 'only'

Seller automated release filter. include returns all rows, exclude omits SAR rows, only returns SAR rows.

Example:exclude

Response

Success

successboolean required
messagestring required
statusCodenumber required
errorCodestring

Example response

{
  "responseObject": {
    "generatedAt": "2026-04-09T00:00:00.000Z",
    "rows": [
      {
        "feeBps": 95,
        "sellerAutomatedReleaseEnabled": true
      }
    ]
  }
}

Changes

No recorded changes to this endpoint across all 1 revision of this API.