Ticker

Ticker Currencies List

Retrieve the list of currencies supported by APRO AI Oracle.

Credit Consumption: 1 API call credit per request

Endpoint: GET /v2/ticker/currencies/list

Query Parameters:

  • page (number) – Page number (e.g., 1)

  • size (number) – Number of entries per page (e.g., 10)

Sample Request

curl -X GET "https://api-ai-oracle.apro.com/v2/ticker/currencies/list?size=50&page=1" \
 -H "accept: application/json"

Sample Response

{
    "status": {
        "timestamp": 1742456493281,
        "code": 200,
        "message": ""
    },
    "data": [
        {
            "name": "Aave",
            "symbol": "AAVE",
            "keywords": [
                "aave"
            ],
            "support_providers": [
                "AggregationCoinMarketCap",
                "AggregationCoinGecko",
                "DexAve",
                "DexDexTools"
            ]
        }
    ]
}

Ticker Currency Support

Retrieve detailed information about a specific currency.

Credit Consumption: 1 API call credit per request

Endpoint: GET /v2/ticker/currency/support


Request

Query Parameters:

  • name (string) – Currency identifier: name, symbol, or keyword Example: link

  • restricted (string) – Query mode: strict or relaxed

    • In strict mode, at least 3 data sources are required

    • Default: strict Example: strict


Sample Request

Sample Response

Ticker Currency Price

Retrieve the price of a specified currency quoted in another currency.

Credit Consumption: 2 API call credits per request

Endpoint: GET /v2/ticker/currency/price


Request

Query Parameters:

  • name (string) – Base currency: name, symbol, or keyword Example: aave

  • quotation (string) – Quotation currency: name, symbol, or keyword Example: usd

  • type (string) – Aggregation method: median or average Default: median Example: median


Sample Request

Sample Response

Last updated