Velora Developer Docs
VeloraUser Documentation
  • API
    • Velora API
      • Velora Delta API
        • Overview
        • Contracts
        • Retrieve Delta price with fallback to Market
        • Retrieve details for creating cross-chain order
        • Build a Delta Order to Sign
        • Submit a Delta Order
        • Track Delta Order Auction Status
        • Example: Quote With Fallback
      • Velora Market API
        • Overview
        • API Versions
          • API v6.2
          • API v5
        • Retrieve a price: /prices
        • Build a transaction: /transactions
        • Get Price & Calldata: /swap
        • Example: Fetch Price & Build Transaction
    • Get Tokens List
    • Limit Orders
      • Introduction
      • Contracts
      • On chain Data Structure
      • Data structure in our centralized system
      • API References
        • Fungible tokens
          • Create a limit order
          • Create a p2p limit order
          • Get limit orders by maker
          • Get limit orders by taker
          • Get Pairs
          • Get Orderbook
          • Fill a limit order
          • Cancel a limit order
        • NFT
          • Create an order
          • Create a p2p order
          • Get NFT orders by maker
          • Get NFT orders by taker
          • Get Pairs
          • Get orderbook
          • Fill a limit order
          • Cancel a limit order
      • SDK
        • Typescript
        • Python
  • AugustusRFQ API Specification
  • Augustus Swapper
    • Augustus v6.2
    • Augustus v5
  • Subgraphs
  • Security
    • Augustus V6.2
    • Augustus V6.1
    • Augustus RFQ
    • Augustus V5
  • Help Center
Powered by GitBook
On this page
Export as PDF
  1. API
  2. Limit Orders
  3. API References
  4. NFT

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 2 years ago