Skip to content

Query Ticker Information and Statistics

Endpoint Information

Endpoint: GET /api/v1/tickers/{symbol}/stats?exchange={exchange}

Description: Get statistics for a specific stock, including basic information and trading statistics

Authentication: Accessible anonymously

Query Parameters

ParameterTypeRequiredDescription
symbolstringYesRoute parameter, stock symbol
exchangeintYesURL parameter, exchange code. See Exchange enum type description

Response Parameters

FieldTypeDescription
tickerstringStock symbol
namestringStock name
addressstringToken address
exchangeintExchange code. See Exchange enum type description
ordersintOrder count
volumestringVolume

Request Example

bash
curl -X GET "/api/v1/tickers/AAPL/stats?exchange=0" \
     -H "Content-Type: application/json"

Response Example

json
{
    "code": 0,
    "data": {
        "ticker": "AAPL",
        "name": "Apple Inc.",
        "address": "0x1234567890abcdef...",
        "exchange": 0,
        "orders": 150,
        "volume": "50000"
    }
}