GET
/
fastedge
/
v1
/
apps
/
{id}
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

200
application/json

Ok

The response is of type object.