GET
/
api
/
v1
/
apps
/
{uuid}
/
ports
List application ports
curl --request GET \
  --url https://app.miget.com/api/v1/apps/{uuid}/ports \
  --header 'Authorization: <api-key>'
[
  {
    "id": "<string>",
    "internal_port": "<string>",
    "external_port": "<string>",
    "protocol": "<string>",
    "auto_detected": "<string>",
    "created_at": "<string>",
    "updated_at": "<string>",
    "public": "<string>",
    "public_endpoint": "<string>",
    "port_endpoint": {
      "endpoint_id": "<string>",
      "endpoint_hostname": "<string>",
      "endpoint_ipv4_primary": "<string>",
      "endpoint_ipv4_secondary": "<string>",
      "endpoint_ipv6_primary": "<string>",
      "endpoint_ipv6_secondary": "<string>"
    }
  }
]

Authorizations

Authorization
string
header
required

Bearer token for authentication. Format: 'Bearer {token}'

Headers

X-Workspace-Id
string

Workspace ID (uses default workspace if not provided)

Path Parameters

uuid
string
required

Application UUID

Response

List application ports

id
string
required
internal_port
string
required
external_port
string
required
protocol
string
required
auto_detected
string
required
created_at
string
required
updated_at
string
required
public
string
required
public_endpoint
string
required
port_endpoint
object