Skip to main content
GET
/
api
/
sol
/
perp
/
markets
/
{market_id}
/
trades
Perp market fills
curl --request GET \
  --url 'https://ca.raze.sh/api/sol/perp/markets/{market_id}/trades?apiKey='
{
  "market_id": "<string>",
  "data": [
    {
      "timestamp": 123,
      "slot": 123,
      "signature": "<string>",
      "signer": "<string>",
      "side": "long",
      "size": 123,
      "price": 123,
      "fee": 123
    }
  ],
  "count": 123
}

Documentation Index

Fetch the complete documentation index at: https://docs.raze.bot/llms.txt

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

Authorizations

apiKey
string
query
required

Path Parameters

market_id
string
required

Query Parameters

from
integer<int64>

Start timestamp (Unix ms).

to
integer<int64>

End timestamp (Unix ms).

limit
integer
default:200
Required range: 1 <= x <= 1000

Response

200 - application/json

Success

market_id
string
data
object[]
count
integer