Skip to main content
GET
/
gateway
/
status
Get Gateway Status
curl --request GET \
  --url http://localhost:8000/gateway/status \
  --header 'Authorization: Basic <encoded-value>'
{
  "running": true,
  "container_id": "<string>",
  "image": "<string>",
  "created_at": "<string>",
  "port": 123
}

Authorizations

Authorization
string
header
required

Basic authentication header of the form Basic <encoded-value>, where <encoded-value> is the base64-encoded string username:password.

Response

200 - application/json

Successful Response

Status information for Gateway instance

running
boolean
required

Whether Gateway container is running

container_id
string | null

Container ID if running

image
string | null

Image used for the container

created_at
string | null

Container creation timestamp

port
integer | null

Port Gateway is running on