v32

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

Get app details

Retrieve complete configuration and metadata for a specific application. Includes binary reference, plan limits, environment variables, and current status.

get/fastedge/v1/apps/{app_id}

Path parameters

app_idinteger required

Unique identifier of the application to retrieve

Response

Returns complete application configuration and metadata

namestring

Unique application name (alphanumeric, hyphens allowed)

urlstring

Auto-generated URL where the application is accessible

binaryinteger

ID of the WebAssembly binary to deploy

templateinteger

Template ID

template_namestring

Template name

statusinteger

Status code:
0 - draft (inactive)
1 - enabled
2 - disabled
5 - suspended

plan_idinteger

Plan ID

planstring

Plan name

envobject

Environment variables

rsp_headersobject

Extra headers to add to the response

log'kafka' | 'none' nullable
debugboolean

Enable verbose debug logging for 30 minutes. Automatically expires to prevent performance impact.

debug_untilstring date-time

When debugging finishes

commentstring

Optional human-readable description of the application's purpose

api_typestring

Wasm API type

networksstring[]

Networks

secretsobject

Application secrets

storesobject

Application edge stores

Example response

{
  "name": "my-edge-app",
  "url": "my-edge-app.fastedge.gcore.dev",
  "binary": 12345,
  "status": 1,
  "env": {
    "var1": "value1",
    "var2": "value2"
  },
  "rsp_headers": {
    "header1": "value1",
    "header2": "value2"
  },
  "comment": "Production API gateway for customer portal"
}