Get usage quotas
Returns the API usage summary for the current month and current minute, along with the usage limits.
GEThttps://api.devalgoseek.com/api/v1/account/my/quotas#
Returns the API usage summary for the current month and current minute, along with the usage limits.
Note: the monthly limit is refreshed at the beginning of each month.
Important: the quotas are applied across all API keys in your account.
Responses#
- 200
- 403
Successful Response
- application/json
- Schema
- Example (auto)
Schema
quotas_usage objectrequired
API usage consumed so far in the current period.
The number of API requests per minute.
12The number of API requests per month.
432The amount of data scanned while processing the request, in bytes per month.
5000000000The amount of data returned in the response, in bytes per month.
500000000quotas_limit objectrequired
Maximum allowed API usage per period.
The number of API requests per minute.
12The number of API requests per month.
432The amount of data scanned while processing the request, in bytes per month.
5000000000The amount of data returned in the response, in bytes per month.
500000000{
"quotas_limit": {
"monthly_data_returned": 10000000000,
"monthly_data_scanned": 100000000000,
"monthly_requests": 10000,
"per_minute_requests": 40
},
"quotas_usage": {
"monthly_data_returned": 241113600,
"monthly_data_scanned": 8508447132,
"monthly_requests": 432,
"per_minute_requests": 3
}
}
Forbidden
- application/json
- csharp
- curl
- dart
- go
- http
- java
- javascript
- kotlin
- c
- nodejs
- objective-c
- ocaml
- php
- postman-cli
- powershell
- python
- r
- ruby
- rust
- shell
- swift
- HTTPCLIENT
- RESTSHARP
var client = new HttpClient();
var request = new HttpRequestMessage(HttpMethod.Get, "https://api.devalgoseek.com/api/v1/account/my/quotas");
request.Headers.Add("Accept", "application/json");
request.Headers.Add("X-API-KEY", "<X-API-KEY>");
var response = await client.SendAsync(request);
response.EnsureSuccessStatusCode();
Console.WriteLine(await response.Content.ReadAsStringAsync());
Click the Send API Request button above and see the response here!