OpenapiEngine
Read one model's load state on the serving runtime
Model reads one model's load state — loaded, unloading, or not_found, as the engine itself reports it.
GET /v1/engine/model
| Address | https://api.hanzo.ai/v1/engine/model |
| Method | GET |
| Operation | engineModel |
| Auth | Authorization: Bearer $HANZO_API_KEY |
Model reads one model's load state — loaded, unloading, or not_found, as the engine itself reports it.
Request
1 field.
| Field | In | Type | Required | Description |
|---|---|---|---|---|
model | query | string | — | Model is the model id to inspect, exactly as the model list reports it. |
Response
| Status | Body | Meaning |
|---|---|---|
200 | ok |
200 body — 1 field.
| Field | In | Type | Always | Description |
|---|---|---|---|---|
(body) | body | any | yes |
Failure carries the platform error shape — see Errors.
Examples
hanzo engine modelimport { Configuration, EngineApi } from 'hanzoai';
const api = new EngineApi(new Configuration({ accessToken: process.env.HANZO_API_KEY }));
const { data } = await api.engineModel();from hanzoai.cloud import ApiClient, Configuration
from hanzoai.cloud.api import EngineApi
client = ApiClient(Configuration(access_token=os.environ["HANZO_API_KEY"]))
result = EngineApi(client).engine_model()cfg := cloud.NewConfiguration()
cfg.AddDefaultHeader("Authorization", "Bearer "+os.Getenv("HANZO_API_KEY"))
client := cloud.NewAPIClient(cfg)
resp, _, err := client.EngineAPI.EngineModel(context.Background()).Execute()
if err != nil {
return err
}use hanzo_cloud::apis::{configuration::Configuration, engine_api};
let mut cfg = Configuration::new();
cfg.bearer_access_token = std::env::var("HANZO_API_KEY").ok();
let result = engine_api::engine_model(&cfg, Default::default()).await?;import ai.hanzo.cloud.ApiClient;
import ai.hanzo.cloud.api.EngineApi;
ApiClient client = new ApiClient();
client.setRequestInterceptor(b -> b.header("Authorization", "Bearer " + System.getenv("HANZO_API_KEY")));
var result = new EngineApi(client).engineModel();curl https://api.hanzo.ai/v1/engine/model \
-H "Authorization: Bearer $HANZO_API_KEY"Tool engine, op engineModel — POST the JSON-RPC envelope to https://api.hanzo.ai/v1/mcp.
curl -X POST https://api.hanzo.ai/v1/mcp \
-H "Authorization: Bearer $HANZO_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"jsonrpc": "2.0",
"id": 1,
"method": "tools/call",
"params": {
"name": "engine",
"arguments": {
"op": "engineModel",
"input": {}
}
}
}'How is this guide?