Bitstamp · Example Payload

Getorderbook

CryptocurrencyExchangeTradingBitcoinEthereumSpot TradingWebSocketMarket DataOrder ManagementFinance

Getorderbook is an example object payload from Bitstamp, with 5 top-level fields. It illustrates the shape of data this provider's APIs accept or return.

Top-level fields

operationIdsummarypathmethodexample

Example Payload

Raw ↑
{
  "operationId": "getorderbook",
  "summary": "Get order book",
  "path": "/api/v2/order_book/{currency_pair}/",
  "method": "GET",
  "example": {
    "timestamp": "string",
    "microtimestamp": "string",
    "bids": [
      [
        "string"
      ]
    ],
    "asks": [
      [
        "string"
      ]
    ]
  }
}