Skip to main content
GET
/
public
/
v1
/
markets
List Markets
curl --request GET \
  --url https://api.pro.daya.co/public/v1/markets
{
  "success": true,
  "message": "Markets retrieved successfully",
  "data": [
    {
      "id": "550e8400-e29b-41d4-a716-446655440000",
      "symbol": "USD-NGN",
      "base_asset": "USD",
      "quote_asset": "NGN",
      "status": "active",
      "created_at": "2024-01-01T00:00:00Z",
      "updated_at": "2024-01-01T00:00:00Z"
    }
  ]
}

Overview

Get a list of all available trading markets on the Pro platform. This endpoint does not require authentication.

Request Examples

curl --request GET \
  --url https://api.pro.daya.co/public/v1/markets

Response

success
boolean
required
Indicates if the request was successful
message
string
required
Human-readable response message
data
array
required
Array of market objects

Success Response

{
  "success": true,
  "message": "Markets retrieved successfully",
  "data": [
    {
      "id": "550e8400-e29b-41d4-a716-446655440000",
      "symbol": "USD-NGN",
      "base_asset": "USD",
      "quote_asset": "NGN",
      "status": "active",
      "created_at": "2024-01-01T00:00:00Z",
      "updated_at": "2024-01-01T00:00:00Z"
    }
  ]
}

Available Markets

Unified Balance: The API accepts USDT-NGN, USDC-NGN, or USD-NGN as input symbols. All are treated equivalently and map to a single unified USD balance. Responses will show USD as the base asset.
Input SymbolMapped ToDescription
USDT-NGNUSD-NGNTether USD to Nigerian Naira (recommended)
USDC-NGNUSD-NGNUSD Coin to Nigerian Naira
USD-NGNUSD-NGNUS Dollar to Nigerian Naira

Rate Limits

  • 100 requests per minute per IP address
  • No authentication required

Next Steps

Get Orderbook

View market depth for a trading pair

Place Order

Place your first trade