Server Details

Retrieve detailed information about a specific VPN server by its ID.

Get Server Details

Retrieve detailed information about a specific VPN server, including its location, type, and capabilities. This is a public endpoint that does not require authentication.

GET/api/v1/servers/{serverId}

Get detailed information about a specific server

Authentication:No Auth Required
ParameterTypeRequiredDescription
serverIdinteger RequiredThe unique numeric ID of the server
curl -X GET https://api.orbai.world/api/v1/servers/101
200Server details retrieved successfully
{
  "success": true,
  "data": {
    "id": 101,
    "host_name": "us-nyc-01.orbvpn.com",
    "public_ip": "203.0.113.10",
    "type": "premium",
    "city": "New York",
    "country": "US",
    "continent": "NA",
    "crypto_friendly": true,
    "bridge_capable": false,
    "bridge_country": null,
    "bridge_priority": 0,
    "description": "Premium US East Coast server",
    "hidden": false
  }
}
404Server not found
{
  "success": false,
  "error": {
    "code": "NOT_FOUND",
    "message": "Server with the specified ID does not exist"
  }
}

Response Fields

FieldTypeDescription
idintegerUnique server identifier
host_namestringServer hostname
public_ipstringPublic IP address of the server
typestringServer type (e.g., standard, premium, streaming)
citystringCity where the server is located
countrystringTwo-letter ISO country code
continentstringContinent code (NA, SA, EU, AF, AS, OC)
crypto_friendlybooleanWhether the server is in a crypto-friendly jurisdiction
bridge_capablebooleanWhether the server supports bridge/obfuscation protocols
bridge_countrystringCountry code of the bridge exit point, if applicable
bridge_priorityintegerPriority order for bridge selection (lower is higher priority)
descriptionstringHuman-readable description of the server
hiddenbooleanWhether the server is hidden from the public server list

Public Endpoint

This endpoint does not require authentication. Use the server id returned from the List Servers endpoint.