curl --request GET \
--url https://aquila.attaxr.com/api/auth/api-key/get \
--header 'Authorization: Bearer <token>'const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://aquila.attaxr.com/api/auth/api-key/get', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://aquila.attaxr.com/api/auth/api-key/get"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text){
"id": "<string>",
"userId": "<string>",
"enabled": true,
"rateLimitEnabled": true,
"requestCount": 123,
"createdAt": "2023-11-07T05:31:56Z",
"updatedAt": "2023-11-07T05:31:56Z",
"name": "<string>",
"start": "<string>",
"prefix": "<string>",
"refillInterval": 123,
"refillAmount": 123,
"lastRefillAt": "2023-11-07T05:31:56Z",
"rateLimitTimeWindow": 123,
"rateLimitMax": 123,
"remaining": 123,
"lastRequest": "2023-11-07T05:31:56Z",
"expiresAt": "2023-11-07T05:31:56Z",
"metadata": {},
"permissions": "<string>"
}{
"message": "<string>"
}{
"message": "<string>"
}{
"message": "<string>"
}{
"message": "<string>"
}{
"message": "<string>"
}{
"message": "<string>"
}Retrieve an existing API key by ID
Retrieve an existing API key by ID
curl --request GET \
--url https://aquila.attaxr.com/api/auth/api-key/get \
--header 'Authorization: Bearer <token>'const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://aquila.attaxr.com/api/auth/api-key/get', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://aquila.attaxr.com/api/auth/api-key/get"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text){
"id": "<string>",
"userId": "<string>",
"enabled": true,
"rateLimitEnabled": true,
"requestCount": 123,
"createdAt": "2023-11-07T05:31:56Z",
"updatedAt": "2023-11-07T05:31:56Z",
"name": "<string>",
"start": "<string>",
"prefix": "<string>",
"refillInterval": 123,
"refillAmount": 123,
"lastRefillAt": "2023-11-07T05:31:56Z",
"rateLimitTimeWindow": 123,
"rateLimitMax": 123,
"remaining": 123,
"lastRequest": "2023-11-07T05:31:56Z",
"expiresAt": "2023-11-07T05:31:56Z",
"metadata": {},
"permissions": "<string>"
}{
"message": "<string>"
}{
"message": "<string>"
}{
"message": "<string>"
}{
"message": "<string>"
}{
"message": "<string>"
}{
"message": "<string>"
}Authorizations
Personal API key sent as a bearer token.
Query Parameters
The configuration ID to use for the API key lookup. If not provided, the default configuration will be used.
The id of the Api Key
Response
API key retrieved successfully
ID
The owner of the user id
Sets if key is enabled or disabled
Whether the key has rate limiting enabled
The number of requests made within the rate limit time window
created at
updated at
The name of the key
Shows the first few characters of the API key, including the prefix. This allows you to show those few characters in the UI to make it easier for users to identify the API key.
The API Key prefix. Stored as plain text.
The interval in milliseconds between refills of the remaining count. Example: 3600000 // refill every hour (3600000ms = 1h)
The amount to refill
The last refill date
The duration in milliseconds
Maximum amount of requests allowed within a window
Remaining requests (every time api key is used this should updated and should be updated on refill as well)
When last request occurred
Expiry date of a key
Extra metadata about the apiKey
Permissions for the api key (stored as JSON string)

