🤖 New: DFlow Agent CLI. Give your AI agent a Solana wallet and let it trade. Get started
curl --request GET \
--url https://quote-api.dflow.net/order-status \
--header 'x-api-key: <api-key>'{
"inAmount": "<string>",
"outAmount": "<string>",
"status": "pending",
"fills": [
{
"inAmount": "<string>",
"inputMint": "<string>",
"outAmount": "<string>",
"outputMint": "<string>",
"signature": "<string>"
}
],
"reverts": [
{
"amount": "<string>",
"mint": "<string>",
"signature": "<string>"
}
]
}API reference for GET /order-status
curl --request GET \
--url https://quote-api.dflow.net/order-status \
--header 'x-api-key: <api-key>'{
"inAmount": "<string>",
"outAmount": "<string>",
"status": "pending",
"fills": [
{
"inAmount": "<string>",
"inputMint": "<string>",
"outAmount": "<string>",
"outputMint": "<string>",
"signature": "<string>"
}
],
"reverts": [
{
"amount": "<string>",
"mint": "<string>",
"signature": "<string>"
}
]
}Documentation Index
Fetch the complete documentation index at: https://pond.dflow.net/llms.txt
Use this file to discover all available pages before exploring further.
API key for authentication. Contact hello@dflow.net to obtain an API key.
Base58-encoded transaction signature of the transaction received from the order endpoint. Only prediction market order signatures are supported.
Last block height at which the transaction is valid
x >= 0Order status
Total input amount filled, as a scaled integer. For example, 1 SOL is 1000000000.
Total output amount filled, as a scaled integer. For example, 1 SOL is 1000000000.
Status of the order
pending, expired, failed, open, pendingClose, closed Fills for the order. Specified if and only if the order has at least one fill.
Show child attributes
Reverts for the order. Specified if and only if the order has at least one revert.
Show child attributes