Skip to main content
GET
/
fastedge
/
v1
/
apps
Python
import os
from gcore import Gcore

client = Gcore(
    api_key=os.environ.get("GCORE_API_KEY"),  # This is the default and can be omitted
)
page = client.fastedge.apps.list()
page = page.apps[0]
print(page.id)
{
  "apps": [
    {
      "id": 2,
      "name": "<string>",
      "status": 123,
      "binary": 123,
      "api_type": "<string>",
      "plan_id": 123,
      "url": "<string>",
      "comment": "<string>",
      "debug_until": "2023-11-07T05:31:56Z",
      "template": 123,
      "template_name": "<string>",
      "networks": [
        "<string>"
      ],
      "upgradeable_to": 123,
      "plan": "<string>"
    }
  ],
  "count": 123
}

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

name
string

Filter by application name (case-insensitive partial match)

Required string length: 1 - 255
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

Required range: 0 <= x <= 5
template
integer<int64>

Filter by template ID (shows apps created from this template)

Required range: x >= 1
binary
integer<int64>

Filter by binary ID (shows apps using this binary)

Required range: x >= 1
plan
integer<int64>

Filter by plan ID

Required range: x >= 1
limit
integer

Maximum number of results to return

Required range: 1 <= x <= 1000
offset
integer
default:0

Number of results to skip for pagination

Required range: x >= 0
ordering
enum<string>

Sort order. Use - prefix for descending (e.g., -name sorts by name descending)

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

Response

Returns paginated list of client applications with optional filters applied

apps
object[]
required
count
integer

Total number of apps