https://yescale.bogia.app
Authorization
header for most endpoints.Authorization: Bearer ACCESS_KEY
ACCESS_KEY
with your actual Access Key./yescale/user
GET
Authorization
: Bearer ACCESS_KEY
(Replace ACCESS_KEY
)
{
"data": {
"access_token": "XXXXX",
"display_name": "Your Display Name",
"email": "your.email@example.com",
"quota": 8664402091,
"request_count": 213527,
"role": 1,
"telegram_id": "",
"used_quota": 1460014143,
"username": "your_username"
},
"message": "",
"success": true
}
quota
: Your remaining credits. To convert to USD, divide by 500,000.used_quota
: Your consumed credits. To convert to USD, divide by 500,000./yescale/apikeylist
GET
keyword
(optional): A string to filter API keys by.token
(optional): A specific token to filter by.Authorization
: Bearer ACCESS_KEY
(Replace ACCESS_KEY
)
/yescale/task
GET
start_timestamp
(required): The Unix timestamp marking the beginning of the time range.end_timestamp
(required): The Unix timestamp marking the end of the time range.Authorization
: Bearer ACCESS_KEY
(Replace ACCESS_KEY
)
/yescale/logs
GET
p
(optional): Page number for pagination. Defaults to 1.page_size
(optional): Number of items per page. Defaults to 10000.type
(optional): Type of logs to retrieve (e.g., 2
).token_name
(optional): Filter logs by a specific token name.model_name
(optional): Filter logs by a specific model name.username
(optional): Filter logs by username.start_timestamp
(optional): The Unix timestamp marking the beginning of the time range for logs.end_timestamp
(optional): The Unix timestamp marking the end of the time range for logs.Authorization
: Bearer ACCESS_KEY
(Replace ACCESS_KEY
)