Channels and Models
The model ID selects a capability. The channel or group determines which resources can serve that model. Your key must belong to a group that includes the target model.
List available models
bash
curl https://ai.akaii.top/v1/models \
-H "Authorization: Bearer $AKAI_API_KEY"The response represents models visible to the current key. Availability can differ by group, account state, and service configuration.
Use the returned id exactly as the request model value:
json
{
"model": "MODEL_ID_FROM_CONSOLE",
"messages": [
{ "role": "user", "content": "Hello" }
]
}Do not guess model IDs from another provider's documentation.