v32

latestOpenAPI 3.1.0raw.githubusercontent.com2026-05-151,1412,2144.5 MB
Everywhere Inference Apps

Get inference application template

Retrieves detailed information about a specific machine learning application template from the catalog. The response includes the application’s metadata, documentation, tags, and a complete set of components with configuration options, compatible flavors, and deployment capabilities — all necessary for building and customizing an AI application.

get/cloud/v3/inference/applications/catalog/{application_name}

Path parameters

application_namestring required

Name of application in catalog

Name of application in catalog

Response

OK

componentsobject required

Configurable components of the application

cover_urlstring required

URL to the application's cover image

descriptionstring required

Brief overview of the application

display_namestring required

Human-readable name of the application

namestring required

Unique application identifier in the catalog

readmestring required

Detailed documentation or instructions

tagsobject required

Categorization key-value pairs

Example response

{
  "cover_url": "https://cdn.example.com",
  "description": "This is a demo application",
  "display_name": "Llama-3.2-1B-Instruct",
  "name": "demo-app",
  "readme": "Detailed documentation",
  "tags": {
    "category": "Model",
    "model_docs_endpoint": "/docs",
    "model_inference_engine": "vllm",
    "model_owner": "Meta",
    "model_type": "Text Generation"
  }
}