Per-API-key concurrency breakdown
curl --request GET \
--url https://api.apisale.ai/v1/account/keys \
--header 'Authorization: <api-key>'import requests
url = "https://api.apisale.ai/v1/account/keys"
headers = {"Authorization": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: '<api-key>'}};
fetch('https://api.apisale.ai/v1/account/keys', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"api_keys": [
{
"apiKeyId": "<string>",
"name": "<string>",
"keyPrefix": "<string>",
"inFlight": 123,
"share": 0.25
}
]
}Public Account
Per-API-key concurrency breakdown
Concurrency usage for every active key in the organization.
GET
/
v1
/
account
/
keys
Per-API-key concurrency breakdown
curl --request GET \
--url https://api.apisale.ai/v1/account/keys \
--header 'Authorization: <api-key>'import requests
url = "https://api.apisale.ai/v1/account/keys"
headers = {"Authorization": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: '<api-key>'}};
fetch('https://api.apisale.ai/v1/account/keys', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"api_keys": [
{
"apiKeyId": "<string>",
"name": "<string>",
"keyPrefix": "<string>",
"inFlight": 123,
"share": 0.25
}
]
}