cURL
curl --request GET \ --url https://api.pro.daya.co/public/v1/market-trades/{symbol}
{ "success": true, "message": "Market trades retrieved successfully", "data": [ { "id": "660e8400-e29b-41d4-a716-446655440000", "symbol": "USD-NGN", "price": "1545.50", "quantity": "100.00", "side": "buy", "created_at": "2024-01-15T10:35:01Z" }, { "id": "660e8400-e29b-41d4-a716-446655440001", "symbol": "USD-NGN", "price": "1545.00", "quantity": "50.00", "side": "sell", "created_at": "2024-01-15T10:34:55Z" } ] }
List recent trades for a trading pair
USDT-NGN
USDC-NGN
USD-NGN
50
1
100
curl --request GET \ --url 'https://api.pro.daya.co/public/v1/market-trades/USDT-NGN?limit=20'
Show trade properties
1545.50
100.00
buy
sell
{ "success": false, "message": "Market not found", "error": { "code": "SYMBOL_NOT_FOUND", "message": "Market not found" } }
side