GET
/
fastedge
/
v1
/
apps
curl --request GET \
  --url https://api.gcore.com/fastedge/v1/apps \
  --header 'APIKey: <api-key>'
{
  "apps": [
    {
      "id": 123,
      "name": "<string>",
      "url": "<string>",
      "status": 123,
      "binary": 123,
      "comment": "<string>",
      "api_type": "<string>",
      "debug_until": "2023-11-07T05:31:56Z",
      "template": 123,
      "template_name": "<string>",
      "networks": [
        "<string>"
      ],
      "upgradeable_to": 123,
      "plan_id": 123,
      "plan": "<string>"
    }
  ],
  "count": 123
}

Authorizations

APIKey
string
header
required

API key for authentication.

Query Parameters

name
string

Name of the app

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
status
integer

Status code:
0 - draft (inactive)
1 - enabled
2 - disabled
3 - hourly call limit exceeded
4 - daily call limit exceeded
5 - suspended

template
integer

Template ID

binary
integer

Binary ID

plan
integer

Plan ID

limit
integer

Limit for pagination

offset
integer

Offset for pagination

ordering
enum<string>

Ordering

Available options:
name,
-name,
status,
-status,
id,
-id,
template,
-template,
binary,
-binary,
plan,
-plan

Response

200
application/json

Ok

The response is of type object.