GET
/
v1
/
developer
/
github
/
new_stars
New Github Stars
curl --request GET \
  --url https://api.invezo.com/v1/developer/github/new_stars \
  --header 'x-invezo-api-key: <api-key>'
{
    "status": "OK",
    "request_id": "",
    "symbol": "BTC",
    "result_count": 5000,
    "data": [
        {
            "t": 1608940800,
            "v": 25
        },
        {
            "t": 1609027200,
            "v": 24
        },
        ...
    ]
}

Query Parameters

symbol
string
required
asset symbol (example: btc)
pair
string
required
asset symbol with base currency (example: btc-usd)
min
int
required
start of the aggregate time window as a timestamp (example: 1168300800)
max
int
required
end of the aggregate time window as a timestamp (example: 1652486400)
interval
string
required
size of the time window (valid intervals: 5m, 1h, 1d, 1w, 1mo)
sort
string
sort the results by timestamp. asc will return results in ascending order (oldest to newest), desc will return results in descending order (newest to oldest). default value is asc
limit
int
limit the number of results returned, default is 5000 and max is 50000
{
    "status": "OK",
    "request_id": "",
    "symbol": "BTC",
    "result_count": 5000,
    "data": [
        {
            "t": 1608940800,
            "v": 25
        },
        {
            "t": 1609027200,
            "v": 24
        },
        ...
    ]
}