Models
List the models available to your key, or retrieve one by id.
List models
bash
curl https://api-gw.aimasteryedu.in/v1/models \
-H "Authorization: Bearer $VARUNSH_API_KEY"json
{
"object": "list",
"data": [
{
"id": "varunsh/atlas-mini",
"object": "model",
"owned_by": "VarunSH",
"context_length": 128000,
"max_output_tokens": 8192
}
]
}Retrieve a model
bash
curl https://api-gw.aimasteryedu.in/v1/models/varunsh%2Fatlas-mini \
-H "Authorization: Bearer $VARUNSH_API_KEY"Model ids contain a slash, so URL-encode it (%2F) in the path.