Get limit orders by taker

GET /ft/orders/:chainId/taker/:address

Examples

curl -X GET \
  'https://api.paraswap.io/ft/orders/137/taker/0x05182E579FDfCf69E4390c3411D8FeA1fb6467cf'

GET /ft/p2p/:chainId/taker/:address (for p2p)

Examples

curl -X GET \
  'https://api.paraswap.io/ft/p2p/137/taker/0x05182E579FDfCf69E4390c3411D8FeA1fb6467cf'

Query parameters:

  • chainId:network id (Ethereum Mainnet = 1).

  • address: will return you the orders in which taker == address.

  • limit (Optional): max count of orders.

  • offset (Optional): pagination offset.

  • hideSmallBalances (Optional, default: false): boolean if true will hide all orders in which 99.99% of the value has already been swapped.

Response

Understand the response by checking our dedicated page:

Data structure in our centralized system

Last updated