Everywhere Inference Apps
List inference application templates
Returns a list of available machine learning application templates from the catalog. Each template includes metadata such as name, description, cover image, documentation, tags, and a set of configurable components (e.g., model, ui). Components define parameters, supported deployment flavors, and other attributes required to create a fully functional application deployment.
get/cloud/v3/inference/applications/catalog
Response
OK
Example response
{
"count": 1,
"results": [
{
"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"
}
}
]
}