Skip to content

Instantly share code, notes, and snippets.

@SlowestTimelord
Created April 27, 2026 04:04
Show Gist options
  • Select an option

  • Save SlowestTimelord/c33322908a45e49fa2326d0aa0232200 to your computer and use it in GitHub Desktop.

Select an option

Save SlowestTimelord/c33322908a45e49fa2326d0aa0232200 to your computer and use it in GitHub Desktop.
dexie Offers API docs

Offers API for Chia Tokens and NFTs

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.

Offer Statuses

  • 0: Open
  • 1: Pending
  • 2: Cancelling
  • 3: Cancelled
  • 4: Completed
  • 5: Unknown
  • 6: Expired

Endpoints

Search for Offers

GET https://api.dexie.space/v1/offers

Query Parameters

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.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment