GET
/
cloud
/
v3
/
inference
/
applications
/
catalog
/
{application_name}
Get inference application template
curl --request GET \
  --url https://api.gcore.com/cloud/v3/inference/applications/catalog/{application_name} \
  --header 'Authorization: <api-key>'
{
  "components": {},
  "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"
  }
}

Authorizations

Authorization
string
header
required

API key for authentication. Make sure to include the word apikey, followed by a single space and then your token. Example: apikey 1234$abcdef

Path Parameters

application_name
string
required

Name of application in catalog

Response

200 - application/json

OK

The response is of type object.