Per-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));package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.apisale.ai/v1/account/keys"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "<api-key>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}API Reference
Per-key concurrency breakdown
GET
/
v1
/
account
/
keys
Per-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));package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.apisale.ai/v1/account/keys"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "<api-key>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}Authorizations
Format: Key as_live_xxx
Response
200
API key usage list
⌘I