- Developer
- GitHub Pull Requests
Developer
GitHub Pull Requests
Developers create a pull request when they are ready to begin the process of merging new code changes with the main project repository. Watching pull requests is a good way to monitor how much a repository is changing.
/v1/developer/github/pull_requests
curl --request GET \
--url https://api.invezo.com/v1/developer/github/pull_requests \
--header 'x-invezo-api-key: AUTH_VALUE'
Query Parameters
asset symbol (example: btc)
asset symbol with base currency (example: btc-usd)
start of the aggregate time window as a timestamp (example: 1168300800)
end of the aggregate time window as a timestamp (example: 1652486400)
size of the time window (valid intervals: 5m, 1h, 1d, 1w, 1mo)
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 the number of results returned, default is 5000 and max is 50000
{
"status": "OK",
"request_id": "",
"symbol": "BTC",
"result_count": 5000,
"data": [
{
"t": 1608854400,
"v": 20341
},
{
"t": 1608940800,
"v": 20351
},
...
]
}
curl --request GET \
--url https://api.invezo.com/v1/developer/github/pull_requests \
--header 'x-invezo-api-key: AUTH_VALUE'
{
"status": "OK",
"request_id": "",
"symbol": "BTC",
"result_count": 5000,
"data": [
{
"t": 1608854400,
"v": 20341
},
{
"t": 1608940800,
"v": 20351
},
...
]
}