- Getting Started
- General
- Artificial Intelligence
- Administration
Create new API key
POST
https://api.rimunace.xyz/admin/api-key
Admin
Last modified:2025-02-18 06:28:08
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
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
discord_id
string | null
optional
discord_username
string | null
optional
discord_img
string | null
optional
category
string | null
optional
Example
{
"tier": "free"
}
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/api-key' \
--header 'Content-Type: application/json' \
--data-raw '{
"tier": "free"
}'
Responses
🟢201Created
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"
}
}
}
}
🟠401Unauthorized
🔴500Server Error