Price Feeds

This document illustrates the price feeds data request parameters, endpoint and the data returned.

API Call

Base Url: https://price-feeds.gora.io

Get Price: GET /api/v2/crypto

Parameters:

Example Call

https://price-feeds.gora.io/api/v2/crypto/prices?key=##signKey&assets=btc&curr=usd

Example Response (JSON)

[
    {
        "name": "btc/usd",
        "price": 26398.738,
        "timestamp": 1686232012552
    }
]

Results Schema

Last updated