Marketplace API
Liquid provides APIs to query and interact with the Marketplace, making it simple for developers and partners to list, discover, and trade tokenized assets.
GET
/api/marketplace/listings
Retrieve a list of all tokenized assets available for trading, with support for powerful filters, such as:Asset type (e.g., only real estate, collectibles, business equity)
Jurisdiction (e.g., only assets located in the EU)
Attributes (e.g., only assets offering passive income or yield)
The API response includes metadata like:
Token mint address
Asset name
Asset description
Current price (based on AMM pool pricing or last trade)
Available liquidity
Asset status (e.g., verified, accredited-only)
POST
/api/marketplace/trade
(Planned) Execute a trade of an asset token, abstracting away the complexity of interacting directly with a DEX.Liquid’s backend will:
Route the trade through an underlying Solana DEX or Liquid’s own AMM.
Handle order matching, swaps, and settlement under the hood.
The developer simply provides:
Asset ID
Buy or sell amount
User’s wallet information
This dramatically simplifies marketplace trading integration, allowing developers to offer asset trading inside their apps without needing to build custom DEX interactions
Last updated