- Getting Started
- General
- Artificial Intelligence
- Administration
Models
GET
https://api.rimunace.xyz/v1/models
APIAIv1
Last modified:2025-02-18 06:25:54
Maintainer:Respire
Request
Query Params
web-view
boolean
optional
Example:
false
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 GET 'https://api.rimunace.xyz/v1/models?web-view=false'
Responses
🟢200OK
application/json
Body
object
string
optional
success
boolean
optional
models
array [object {7}]
optional
id
string
required
object
string
required
type
string
required
owned_by
string
required
cost
integer
required
access
object
required
analytics
object
optional
globalStats
object
optional
totalRequests
integer
required
totalInputTokens
integer
required
totalOutputTokens
integer
required
data
array [object {6}]
optional
id
string
required
object
string
required
type
string
required
owned_by
string
required
cost
integer
required
access
object
required
Example
{
"object": "list",
"success": true,
"models": [
{
"id": "gpt-4o",
"object": "model",
"type": "chat.completions",
"owned_by": "openai",
"cost": 5,
"access": {
"free": true,
"augmented": true,
"premium": true,
"cool": true,
"partner": true,
"limited": true,
"exclusive": true,
"special": true
},
"analytics": {
"totalRequests": 25,
"completedRequests": 23,
"failedRequests": 2,
"inputTokens": 130,
"outputTokens": 121
}
},
{
"id": "gpt-4o-mini",
"object": "model",
"type": "chat.completions",
"owned_by": "openai",
"cost": 3,
"access": {
"free": true,
"augmented": true,
"premium": true,
"cool": true,
"partner": true,
"limited": true,
"exclusive": true,
"special": true
},
"analytics": {
"totalRequests": 80,
"completedRequests": 78,
"failedRequests": 2,
"inputTokens": 2610,
"outputTokens": 1497
}
},
{
"id": "claude-3-5-sonnet-20241022",
"object": "model",
"type": "chat.completions",
"owned_by": "anthropic",
"cost": 10,
"access": {
"free": false,
"augmented": false,
"premium": true,
"cool": true,
"partner": true,
"limited": true,
"exclusive": true,
"special": true
},
"analytics": {
"totalRequests": 27,
"completedRequests": 24,
"failedRequests": 3,
"inputTokens": 186,
"outputTokens": 287
}
},
{
"id": "deepseek-r1",
"object": "model",
"type": "chat.completions",
"owned_by": "deepseek",
"cost": 5,
"access": {
"free": false,
"augmented": false,
"premium": true,
"cool": true,
"partner": true,
"limited": true,
"exclusive": true,
"special": true
},
"analytics": {
"totalRequests": 10,
"completedRequests": 10,
"failedRequests": 0,
"inputTokens": 36,
"outputTokens": 431
}
},
{
"id": "deepseek-v3",
"object": "model",
"type": "chat.completions",
"owned_by": "deepseek",
"cost": 2,
"access": {
"free": false,
"augmented": false,
"premium": true,
"cool": true,
"partner": true,
"limited": true,
"exclusive": true,
"special": true
},
"analytics": {
"totalRequests": 18,
"completedRequests": 18,
"failedRequests": 0,
"inputTokens": 293,
"outputTokens": 171
}
}
],
"globalStats": {
"totalRequests": 160,
"totalInputTokens": 3255,
"totalOutputTokens": 2507
}
}