Retrieve Usage Statistics
Retrieve usage statistics for Geonode proxy service.
Retrieve bandwidth usage statistics for your Geonode proxy service account. This endpoint provides detailed information about your data consumption.
Request
curl -X GET "https://monitor.geonode.com/monitor-light/proxies" \
-H "Authorization: Basic base64(username:password)"Response
200 Success
Usage statistics retrieved successfully.
Response Fields
| Field | Type | Description |
|---|---|---|
data | object | Container for usage statistics |
data.bandwidth | object | Bandwidth usage information |
data.bandwidth.data | object | Detailed bandwidth data |
data.bandwidth.data.default | integer | Total bandwidth used in bytes |
data.bandwidth.data.currentFastBandwidth | integer | Current fast bandwidth usage (unlimited services only) |
data.bandwidth.data.totalBandwidthInGB | integer | Total bandwidth used in gigabytes |
Example Response
{
"data": {
"bandwidth": {
"data": {
"default": 17930356,
"currentFastBandwidth": 0,
"totalBandwidthInGB": 2
}
}
}
}