---
title: "Get Recent Trades"
method: GET
path: "/api/v1/market/recent-trade"
tags: ["Market"]
---

# Get Recent Trades

`GET /api/v1/market/recent-trade`

Query for recent public trades, optionally filtered by symbol.

## Query parameters

- `symbol` string
- `limit` integer, nullable

## Response `200`

Recent trades

- GetRecentTradeResponse — Response for recent public trades.
  - `list` PublicTrade[], required
    - `S` 'Sell' | 'Buy', required — Order side: buy or sell.
    - `T` integer, required — The timestamp (ms) that the order is filled.
    - `i` string, required — Trade ID.
    - `p` string, required — Trade price.
    - `s` string, required
    - `seq` integer, required — Cross sequence.
    - `v` string, required — Trade size.

## Other responses

- `400` — Bad Request

---

[API](https://skmtc.net/ekidenfi/apis/ekiden-gateway.md) · [All operations](https://skmtc.net/ekidenfi/apis/ekiden-gateway/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/ekidenfi/ekiden-gateway/versions/75ffe546b73a/schema)
