GET
/
fastedge
/
v1
/
apps
/
{id}
Get app details
curl --request GET \
  --url https://api.gcore.com/fastedge/v1/apps/{id} \
  --header 'Authorization: <api-key>'
{
  "name": "<string>",
  "url": "<string>",
  "binary": 123,
  "template": 123,
  "template_name": "<string>",
  "status": 123,
  "plan_id": 123,
  "plan": "<string>",
  "env": {
    "var1": "value1",
    "var2": "value2"
  },
  "rsp_headers": {
    "header1": "value1",
    "header2": "value2"
  },
  "log": "kafka",
  "debug_until": "2023-11-07T05:31:56Z",
  "comment": "<string>",
  "api_type": "<string>",
  "networks": [
    "<string>"
  ],
  "secrets": {}
}

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

Path Parameters

id
integer
required

ID of the app

Response

Ok

name
string

App name

url
string

App URL

binary
integer

Binary ID

template
integer

Template ID

template_name
string

Template name

status
integer

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

plan_id
integer

Plan ID

plan
string

Plan name

env
object

Environment variables

Example:
{ "var1": "value1", "var2": "value2" }
rsp_headers
object

Extra headers to add to the response

Example:
{ "header1": "value1", "header2": "value2" }
log
enum<string> | null

Logging channel (by default - kafka, which allows exploring logs with API)

Available options:
kafka,
none
debug_until
string<date-time>

When debugging finishes

comment
string

App description

api_type
string

Wasm API type

networks
string[]

Networks

secrets
object

Application secrets