Get Pairs

GET /nft/orders/:chainId/pairs

Example

curl -X GET \
  'https://api.paraswap.io/nft/orders/137/pairs'

Response

{
	"success": true,
	"pairs": [
		{
			"makerAsset": {
				"type": 2,
				"address": "0xcd494673999194365033d7a287af9f0a3b163874"
			},
			"takerAsset": {
				"type": 0,
				"address": "0xad6d458402f60fd3bd25163575031acdce07538d"
			}
		}
	]
}

Last updated