{symbol}: Get recent trades for symbol

API: cryptomkt.com:cryptomarket-api
Endpoint: /public/trades/{symbol}
Response format: application/json
Auth: unknown
Method: GET
Last Status: 200
Latency: 176ms

Description

Returns a list of recent executed trades with price, quantity, side, and timestamp. Use this to show market activity, recent price action, or trade history.

From spec: Returns recent trades information for a specific symbol.

Usage Tips

- Sorted by timestamp descending (newest first) - Side is either 'buy' or 'sell' - Limit parameter controls number of trades returned - Trade ID is unique across all trades

Parameters (7)

by (string, query, optional)

Sort by id or timestamp

Constraints: {'enum': ['id', 'timestamp']}

from (string, query, optional)

Start timestamp (ISO 8601)

limit (integer, query, optional, default: 100)

Maximum number of trades to return

offset (integer, query, optional)

Offset for pagination

sort (string, query, optional)

Sort order (ASC or DESC)

Constraints: {'enum': ['ASC', 'DESC']}

symbol (string, path, required)

Trading symbol code (e.g., BTCUSDT, ETHBTC)

till (string, query, optional)

End timestamp (ISO 8601)

Examples (1)

Get recent BTCUSDT trades probe-gate

Demonstrates fetching recent executed trades with price, quantity, and side

curl 'https://api.exchange.cryptomkt.com/api/3/public/trades/BTCUSDT?limit=5'
import requests

resp = requests.get(
    "https://api.exchange.cryptomkt.com/api/3/public/trades/BTCUSDT",
    params={
        'limit': '5',
    },
)
data = resp.json()
import zingu_apis

api = zingu_apis.api("cryptomkt")
result = api.fetch("public/trades/{symbol}", limit=5)

for item in result:
    print(item)
const resp = await fetch("https://api.exchange.cryptomkt.com/api/3/public/trades/BTCUSDT?limit=5");
const data = await resp.json();

Probe History

Latency

Status Codes

TimeStatusLatencySize
2026-04-16 03:57:32.207890 200 176ms
2026-04-15 00:36:56.344949 200 200ms
2026-04-14 03:59:11.016608 200 186ms
2026-04-12 14:05:01.969486 200 177ms
2026-04-10 02:43:44.744423 200 1000ms
2026-04-09 01:13:56.023998 200 312ms