v44

latestOpenAPI 3.1.0raw.githubusercontent.com2026-05-20129390589.6 KB
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.

requirementsSfcApiInstanceTypeRequirements required
start_atinteger required

Unix timestamp.

end_atinteger required

Unix timestamp.

requested_atinteger required

Unix timestamp.

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
  }
}