Skip to main content
GET
/
api
/
public
/
v1
/
market
/
orderbook
/
{symbol}
Get API public v1 market orderbook by symbol
curl --request GET \
  --url https://api.coinversa.ai/api/public/v1/market/orderbook/{symbol} \
  --header 'X-API-Key: <api-key>'
{
  "asks": [
    {
      "count": 123,
      "price": "<string>",
      "size": "<string>"
    }
  ],
  "bids": [
    {
      "count": 123,
      "price": "<string>",
      "size": "<string>"
    }
  ],
  "symbol": "<string>",
  "timestamp": 123,
  "$schema": "<string>"
}

Documentation Index

Fetch the complete documentation index at: https://docs.coinversa.ai/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

X-API-Key
string
header
required

Path Parameters

symbol
string
required

Query Parameters

depth
integer<int64>
default:10

Response

OK

asks
object[] | null
required
bids
object[] | null
required
symbol
string
required
timestamp
integer<int64>
required
$schema
string<uri>
read-only

A URL to the JSON Schema for this object.

Example:

"https://example.com/schemas/HLOrderBookBody.json"