Get limit orders by maker

GET /ft/orders/:chainId/maker/:address

Examples

curl -X GET \
  'https://api.paraswap.io/ft/orders/1/maker/0x7BA594DF3161729BF2E68A9d0A11dceB57A2e306'

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

Examples

curl -X GET \
  'https://api.paraswap.io/ft/p2p/1/maker/0x7BA594DF3161729BF2E68A9d0A11dceB57A2e306'

Query parameters:

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

  • address: will return you the orders in which maker == 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 systemchevron-right

Last updated