Orderbook
Get market quote
Top-of-book quote (best bid + best ask) for the given requirements and delivery window. The book is aggregated across every SKU whose orders satisfy the requirements and that the caller is permitted to see.
get/preview/v2/orderbook/quote
Query parameters
requirementsstring
URL-safe field[:op]:value triples joined by ;.
start_atinteger required
Unix timestamp.
Example:1738972800
Start of the delivery window.
end_atinteger required
Unix timestamp.
Example:1738972800
End of the delivery window.
Response
Market quote.
Example response
{
"start_at": 1738972800,
"end_at": 1738972800,
"requested_at": 1738972800,
"best_bid": {
"dollars_per_node_hour": "2.500000",
"node_count": 4
},
"best_ask": {
"dollars_per_node_hour": "2.500000",
"node_count": 4
}
}