GET
/
fastedge
/
v1
/
template
Python
from gcore import Gcore

client = Gcore(
    api_key="My API Key",
)
page = client.fastedge.templates.list()
page = page.templates[0]
print(page.id)
{
  "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 my templates

limit
integer

Limit for pagination

offset
integer

Offset for pagination

Response

200
application/json

Ok

The response is of type object.