GET
/
fastedge
/
v1
/
template
curl --request GET \
  --url https://api.gcore.com/fastedge/v1/template \
  --header 'Authorization: <api-key>'
{
  "count": 123,
  "templates": [
    {
      "id": 123,
      "name": "<string>",
      "short_descr": "<string>",
      "long_descr": "<string>",
      "api_type": "<string>",
      "owned": true
    }
  ]
}

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

Query Parameters

api_type
enum<string>

API type:
wasi-http - WASI with HTTP entry point
proxy-wasm - Proxy-Wasm app, callable from CDN

Available options:
wasi-http,
proxy-wasm
only_mine
boolean
default:false

Only mine templates

limit
integer

Limit for pagination

offset
integer

Offset for pagination

Response

200
application/json

Ok

The response is of type object.