Product

Returns the product market liquidity by id

get/v1/product/market-liquidity

Query parameters

productIdstring uuid required
Example:9036443a-441a-4a66-87f2-bd5c44cdca7a

Id representing the registered product

Response

previousTimestampinteger

Previous book update, undefined if never updated (ms since Unix Epoch)

productIdstring uuid required

Id representing the product

timestampinteger required

Most recent book update, created timestamp if never updated (ms since Unix Epoch)

Example response

{
  "asks": [
    [
      "4200.69",
      "1337.420"
    ]
  ],
  "bids": [
    [
      "4199.42",
      "420.55"
    ]
  ],
  "previousTimestamp": 1731664105881,
  "productId": "9036443a-441a-4a66-87f2-bd5c44cdca7a",
  "timestamp": 1731664105881
}