Skip to content
Hoody.com

The AI Models endpoint returns the current cached catalog of models available through the Hoody AI gateway. Pricing is reported in Hoody prices; upstream provider details are intentionally not exposed. Use this endpoint when you need to discover which models are available, their context lengths, supported modalities, and current pricing before dispatching inference requests.

Returns the Hoody AI model catalog.

This endpoint takes no parameters.

Terminal window
curl -X GET https://api.hoody.com/api/v1/ai/models \
-H "Authorization: Bearer <token>"
NameTypeDescription
statusCodenumberHTTP-style status code returned by the catalog endpoint. Always 200 on success.
messagestringHuman-readable status message.
data.updated_atstring | nullTimestamp (ISO 8601) at which the cached catalog was last refreshed.
data.modelsarrayArray of model entries available through the gateway.
data.models[].idstringStable model identifier used when dispatching inference requests.
data.models[].namestringDisplay name of the model.
data.models[].descriptionstring | nullShort description of the model, or null if none is available.
data.models[].createdinteger | nullProvider-reported creation timestamp (epoch seconds), or null if unknown.
data.models[].context_lengthinteger | nullMaximum context window in tokens, or null if unspecified.
data.models[].input_modalitiesarrayModalities the model accepts (for example text, image, file).
data.models[].output_modalitiesarrayModalities the model can produce (for example text).
data.models[].pricingobjectHoody-priced cost map. Common keys include prompt, completion, and image.