Get API key usage
curl --request GET \
--url https://api-v2.requesty.ai/v1/manage/apikey/{id}/usage \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"start": "2025-01-01T00:00:00Z",
"end": "2025-01-31T23:59:59Z",
"group_by": [
"<string>"
],
"resolution": "day"
}
'import requests
url = "https://api-v2.requesty.ai/v1/manage/apikey/{id}/usage"
payload = {
"start": "2025-01-01T00:00:00Z",
"end": "2025-01-31T23:59:59Z",
"group_by": ["<string>"],
"resolution": "day"
}
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.get(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'GET',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({
start: '2025-01-01T00:00:00Z',
end: '2025-01-31T23:59:59Z',
group_by: ['<string>'],
resolution: 'day'
})
};
fetch('https://api-v2.requesty.ai/v1/manage/apikey/{id}/usage', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api-v2.requesty.ai/v1/manage/apikey/{id}/usage",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_POSTFIELDS => json_encode([
'start' => '2025-01-01T00:00:00Z',
'end' => '2025-01-31T23:59:59Z',
'group_by' => [
'<string>'
],
'resolution' => 'day'
]),
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>",
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api-v2.requesty.ai/v1/manage/apikey/{id}/usage"
payload := strings.NewReader("{\n \"start\": \"2025-01-01T00:00:00Z\",\n \"end\": \"2025-01-31T23:59:59Z\",\n \"group_by\": [\n \"<string>\"\n ],\n \"resolution\": \"day\"\n}")
req, _ := http.NewRequest("GET", url, payload)
req.Header.Add("Authorization", "Bearer <token>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api-v2.requesty.ai/v1/manage/apikey/{id}/usage")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"start\": \"2025-01-01T00:00:00Z\",\n \"end\": \"2025-01-31T23:59:59Z\",\n \"group_by\": [\n \"<string>\"\n ],\n \"resolution\": \"day\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api-v2.requesty.ai/v1/manage/apikey/{id}/usage")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"start\": \"2025-01-01T00:00:00Z\",\n \"end\": \"2025-01-31T23:59:59Z\",\n \"group_by\": [\n \"<string>\"\n ],\n \"resolution\": \"day\"\n}"
response = http.request(request)
puts response.read_body{
"usage": {}
}{
"error": {
"message": "<string>"
}
}{
"error": {
"message": "<string>"
}
}{
"error": {
"message": "<string>"
}
}{
"error": {
"message": "<string>"
}
}{
"error": {
"message": "<string>"
}
}{
"error": {
"message": "<string>"
}
}{
"error": {
"message": "<string>"
}
}{
"error": {
"message": "<string>"
}
}Get API Key Usage
Get usage statistics for a specific API key within a date range
GET
/
v1
/
manage
/
apikey
/
{id}
/
usage
Get API key usage
curl --request GET \
--url https://api-v2.requesty.ai/v1/manage/apikey/{id}/usage \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"start": "2025-01-01T00:00:00Z",
"end": "2025-01-31T23:59:59Z",
"group_by": [
"<string>"
],
"resolution": "day"
}
'import requests
url = "https://api-v2.requesty.ai/v1/manage/apikey/{id}/usage"
payload = {
"start": "2025-01-01T00:00:00Z",
"end": "2025-01-31T23:59:59Z",
"group_by": ["<string>"],
"resolution": "day"
}
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.get(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'GET',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({
start: '2025-01-01T00:00:00Z',
end: '2025-01-31T23:59:59Z',
group_by: ['<string>'],
resolution: 'day'
})
};
fetch('https://api-v2.requesty.ai/v1/manage/apikey/{id}/usage', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api-v2.requesty.ai/v1/manage/apikey/{id}/usage",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_POSTFIELDS => json_encode([
'start' => '2025-01-01T00:00:00Z',
'end' => '2025-01-31T23:59:59Z',
'group_by' => [
'<string>'
],
'resolution' => 'day'
]),
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>",
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api-v2.requesty.ai/v1/manage/apikey/{id}/usage"
payload := strings.NewReader("{\n \"start\": \"2025-01-01T00:00:00Z\",\n \"end\": \"2025-01-31T23:59:59Z\",\n \"group_by\": [\n \"<string>\"\n ],\n \"resolution\": \"day\"\n}")
req, _ := http.NewRequest("GET", url, payload)
req.Header.Add("Authorization", "Bearer <token>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api-v2.requesty.ai/v1/manage/apikey/{id}/usage")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"start\": \"2025-01-01T00:00:00Z\",\n \"end\": \"2025-01-31T23:59:59Z\",\n \"group_by\": [\n \"<string>\"\n ],\n \"resolution\": \"day\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api-v2.requesty.ai/v1/manage/apikey/{id}/usage")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"start\": \"2025-01-01T00:00:00Z\",\n \"end\": \"2025-01-31T23:59:59Z\",\n \"group_by\": [\n \"<string>\"\n ],\n \"resolution\": \"day\"\n}"
response = http.request(request)
puts response.read_body{
"usage": {}
}{
"error": {
"message": "<string>"
}
}{
"error": {
"message": "<string>"
}
}{
"error": {
"message": "<string>"
}
}{
"error": {
"message": "<string>"
}
}{
"error": {
"message": "<string>"
}
}{
"error": {
"message": "<string>"
}
}{
"error": {
"message": "<string>"
}
}{
"error": {
"message": "<string>"
}
}Get usage statistics for a specific API key within a date range. Supports aggregation by different time periods and optional grouping by user, model, or custom fields.
Authorizations
API key for authentication
Path Parameters
Body
application/json
Start date in RFC3339 format (e.g., 2025-01-01T00:00:00Z). Required. The date range cannot exceed 100 days from start to end.
Example:
"2025-01-01T00:00:00Z"
End date in RFC3339 format (e.g., 2025-01-31T23:59:59Z). Optional. Defaults to 24 hours from start if not specified. Must be after start date. The date range cannot exceed 100 days.
Example:
"2025-01-31T23:59:59Z"
Fields to group by: user_id, model_requested, or extra.<field_name>
Time resolution for aggregation
Available options:
hour, day, month Response
Successfully retrieved usage data
Map of period (string) to usage entry
Show child attributes
Show child attributes
Last modified on April 27, 2026
Was this page helpful?
⌘I