Skip to main content
GET
/
exchange
/
trades
Recent trades
curl --request GET \
  --url https://hyper.polynode.dev/exchange/trades
[
  {
    "coin": "<string>",
    "side": "<string>",
    "px": "<string>",
    "sz": "<string>",
    "time": 123,
    "hash": "<string>",
    "tid": 123,
    "users": [
      "<string>"
    ]
  }
]

Documentation Index

Fetch the complete documentation index at: https://hypernode-docs.polynode.dev/llms.txt

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

Recent fills for a single asset. side is B for buy aggressor, A for sell aggressor. users contains both maker and taker addresses.

Example

curl -H "x-api-key: YOUR_KEY" "https://hyper.polynode.dev/v2/trades?coin=BTC"
[
  {
    "coin": "BTC",
    "side": "A",
    "px": "71842.0",
    "sz": "0.00251",
    "time": 1776093919125,
    "hash": "0xd71f7d9c0cb6d195d89904390f97b50202920081a7b9f0677ae828eecbbaab80",
    "tid": 932980843183064,
    "users": [
      "0x57dd78cd36e76e2011e8f6dc25cabbaba994494b",
      "0x7f61c154ad14e817162a018122819ff8eddf28d6"
    ]
  }
]

Query Parameters

coin
string
required
network
string
default:mainnet

Response

200 - application/json

Array of recent fills

coin
string
side
string

B = buy aggressor, A = sell aggressor

px
string
sz
string
time
integer
hash
string
tid
integer
users
string[]