Gateways API

Retrieve all available VPN gateways in the system

Servers

Gateways API

Access the list of all available VPN gateways. View gateway names and identifiers for server infrastructure management.

All Gateways

Complete gateway list.

Infrastructure

Core network nodes.

Quick Access

Simple gateway lookup.


Endpoint Overview

QUERY/graphql

Retrieve all available VPN gateways in the system with their identifiers and names.

Authentication:Bearer Token
Required scopes:admin

GraphQL Query

query gateways {
  gateways {
    id
    name
  }
}

HTTP Request:

curl -X POST https://api.orbnet.com/graphql \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer YOUR_TOKEN" \
  -d '{
    "query": "query gateways { gateways { id name } }"
  }'

Response

200Gateways Retrieved Successfully
{
  "data": {
    "gateways": [
      {
        "id": "1",
        "name": "US-East Gateway"
      },
      {
        "id": "2",
        "name": "EU-West Gateway"
      },
      {
        "id": "3",
        "name": "Asia-Pacific Gateway"
      },
      {
        "id": "4",
        "name": "EU-Central Gateway"
      }
    ]
  }
}

Response Fields

idID!

Unique identifier for the gateway.

nameString!

Display name of the gateway.


Gateway Regions

Americas

US East, US West gateways.

Europe

EU Central, EU West nodes.

Asia Pacific

APAC region gateways.

Global

Distributed network.



Gateway Architecture

Gateways are primary network nodes that route VPN traffic. Each gateway can connect to multiple servers within its region.

View All Servers

See the complete list of VPN servers in your infrastructure.

View Servers