Developer
GitHub New Issues
Issues are a bug tracking system built into Github. They provide a way for people to report problems, receive feedback, and collaborate together on code projects. New issues shows the rate at which issues are being open for a repository.
GET
/v1/developer/github/issues/new
x-invezo-api-key*
curl --request GET \
--url https://api.invezo.com/v1/developer/github/issues/new \
--header 'x-invezo-api-key: <x-invezo-api-key>'
Query Parameters
symbolrequired
string
asset symbol (example: btc)
pairrequired
string
asset symbol with base currency (example: btc-usd)
minrequired
int
start of the aggregate time window as a timestamp (example: 1168300800)
maxrequired
int
end of the aggregate time window as a timestamp (example: 1652486400)
intervalrequired
string
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": 1609027200,
"v": 0
},
{
"t": 1609113600,
"v": -1
},
...
]
}
curl --request GET \
--url https://api.invezo.com/v1/developer/github/issues/new \
--header 'x-invezo-api-key: <x-invezo-api-key>'
{
"status": "OK",
"request_id": "",
"symbol": "BTC",
"result_count": 5000,
"data": [
{
"t": 1609027200,
"v": 0
},
{
"t": 1609113600,
"v": -1
},
...
]
}