v32

latestOpenAPI 3.1.0raw.githubusercontent.com2026-05-151,1412,2144.5 MB
FastEdge Templates

Get template details

Retrieve complete configuration and metadata for a specific template. Use this to inspect template parameters before creating applications from it.

get/fastedge/v1/template/{template_id}

Path parameters

template_idinteger required

Unique identifier of the template to retrieve

Response

Returns complete template configuration and metadata

binary_idinteger required

ID of the WebAssembly binary to use for this template

namestring required

Unique name for the template (used for identification and searching)

short_descrstring

Brief one-line description displayed in template listings

long_descrstring

Detailed markdown description explaining template features and usage

api_typestring required

Wasm API type

ownedboolean required

Is the template owned by user?

Example response

{
  "binary_id": 12345,
  "name": "api-gateway-template",
  "short_descr": "HTTP API gateway with authentication",
  "long_descr": "Complete API gateway solution with JWT authentication, rate limiting, and request transformation capabilities.",
  "params": [
    {
      "name": "api_key",
      "data_type": "string",
      "mandatory": true,
      "descr": "API key for external service authentication"
    }
  ]
}