curl --request GET \
--url https://quote-api.dflow.net/order-status \
--header 'x-api-key: <api-key>'{
"inAmount": "<string>",
"outAmount": "<string>",
"fills": [
{
"inAmount": "<string>",
"inputMint": "<string>",
"outAmount": "<string>",
"outputMint": "<string>",
"signature": "<string>"
}
],
"reverts": [
{
"amount": "<string>",
"mint": "<string>",
"signature": "<string>"
}
]
}Get Order Status
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>",
"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.
Authorizations
API key for authentication. Contact hello@dflow.net to obtain an API key.
Query Parameters
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 >= 0Response
Order 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
Show child attributes
Reverts for the order. Specified if and only if the order has at least one revert.
Show child attributes
Show child attributes