dexie provides a public interface for integrations in trading bots, wallets, or other applications. Authentication is not required, but abusive IPs might get rate limited. If you have any questions, join our Discord. If something does not work right, check the dexie Status Page.
💡 Tip: If you are looking for simple token (CAT) pricing data, use the Prices API.
If you want to link to dexie or show a dexie icon, head over to the dexie kit.
- 0: Open
- 1: Pending
- 2: Cancelling
- 3: Cancelled
- 4: Completed
- 5: Unknown
- 6: Expired
- Mainnet: https://api.dexie.space/v1/Mainnet
- Testnet: https://api-testnet.dexie.space/v1/Testnet
GET https://api.dexie.space/v1/offers
| Parameter | Default | Possible Values | Notes |
|---|---|---|---|
| status | 0 | 0 Open, 1 Pending, 2 Cancelling (Pending Cancel), 3 Cancelled (last 30 days), 4 Completed, 5 Unknown, 6 Expired (last 30 days) | Only include offers with this status. Multiples allowed (status=3&status=4) |
| offered | any | XCH Asset Code (SBX, ...), db1a... Asset ID, col1... NFT Collection, nft1... Single NFT | Only include offers which offer this asset. |
| requested | any | XCH Asset Code (SBX, ...), db1a... Asset ID, col1... NFT Collection, nft1... Single NFT | Only include offers which request this asset. |
| offered_or_requested | ignore | XCH Asset Code (SBX, ...), db1a... Asset ID, col1... NFT Collection, nft1... Single NFT | Only include offers which request OR offer this asset. |
| offered_type | any | cat Any CAT2, nft Any NFT | Only include offers which offer this type. |
| requested_type | any | cat Any CAT2, nft Any NFT | Only include offers which request this type. |
| offered_or_requested_type | ignore | cat Any CAT2, nft Any NFT | Only include offers which either request or offer this type. |
| sort | price (with offered and requested) otherwise date_found; | price lowest price first; highest price first; recently completed offers first; newly added offers first | Sort offers by this field. |
| compact | false/true | false/true | false: Outputs a lighter version without full offers. Use this if you only need trade or price data to save bandwidth and load (e.g., recent trades). |
| include_multiple_requested | false/true | false/true | Include offers which request multiple assets (only applies if requested parameter is set). |
| page | 1 | 1 to page_count | Request a specific page. |
| page_size | 20 | How many offers to request. | For more than 100 offers use page. |