Place, query, and cancel orders on Manifest, Solana's orderbook DEX. Returns unsigned transactions for client-side signing.
Base URL: /v1
Create one or more orders on a Manifest market. Returns a base64-encoded VersionedTransaction that you sign and submit.
Query open orders for a wallet. Returns all orders across all markets with decimal-adjusted values.
Cancel one or more orders by clientOrderId or sequenceNumber. Returns a base64-encoded VersionedTransaction for signing.
VersionedTransaction (for POST/DELETE) or order data (for GET).The API handles all on-chain complexity internally:
None. The API never has access to your private keys. Transactions are returned unsigned (or partially signed with ephemeral keypairs for new accounts) and must be signed by your wallet before submission.
All errors follow the same format:
{
"error": "short error category",
"cause": "detailed error message",
"code": 400
}