- Getting Started
- General
- Artificial Intelligence
- Administration
Update API key configuration
POST
https://api.rimunace.xyz/admin/update-key
Admin
Last modified:2025-02-16 11:04:34
Maintainer:Respire
Request
Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.Example:
Authorization: Bearer ********************
Body Params application/json
key
string
required
update
object (ApiKeyConfig)
required
tier
enum<string>
optional
Allowed values:
freeaugmentedpremiumcoolpartnerlimitedexclusivespecial
credits
integer
optional
>= 0
maxCredits
integer
optional
>= 0
rpm
integer
optional
>= 1<= 1000
rph
integer
optional
>= 1<= 10000
owner
object
optional
Example
Request samples
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://api.rimunace.xyz/admin/update-key' \
--header 'Content-Type: application/json' \
--data-raw ''
Responses
🟢200OK
application/json
Body
apiKey
object
optional
key
string
optional
config
object (ApiKeyConfig)
optional
Example
{
"apiKey": {
"key": "string",
"config": {
"tier": "free",
"credits": 0,
"maxCredits": 0,
"rpm": 1,
"rph": 1,
"owner": {
"discord_id": "string",
"discord_username": "string",
"discord_img": "string",
"category": "string"
}
}
}
}
🟠400Bad Request
🟠401Unauthorized
🟠404Record Not Found
🔴500Server Error