# Get Current Order Book

<EndpointPage
  breadcrumbs={[
    { label: "Trading", href: "/trading/trading" },
    { label: "Market Data", href: "/trading/rest-api/market-data" },
    { label: "Get Current Order Book" },
  ]}
  title="Get Current Order Book"
  method="GET"
  url="https://api.gemini.com/v1/book/{symbol}"
  description="This will return the current order book as two arrays (bids / asks)."
  note={{
    title: "Note",
    children: <p style={{ margin: 0 }}>The quantities and prices returned are returned as strings rather than numbers. The numbers returned are exact, not rounded, and it can be dangerous to treat them as floating point numbers.</p>
  }}
  example={{
    request: {
      method: "GET",
      url: "https://api.gemini.com/v1/book/BTCUSD",
      headers: [],
    },
  }}
  sections={[
    {
      heading: "Path Parameters",
      children: <SpecPathParams operationId="getCurrentOrderBook" />,
    },
    {
      heading: "Query Parameters",
      children: <SpecQueryParams operationId="getCurrentOrderBook" />,
    },
    {
      heading: "Responses",
      children: <SpecResponses operationId="getCurrentOrderBook" />,
    },
  ]}
/>

<PageNavigation
  prev={{ label: "List Fee Promos", href: "/trading/rest-api/market-data/list-fee-promos" }}
  next={{ label: "List Trades", href: "/trading/rest-api/market-data/list-trades" }}
/>
