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
| Parameter | Type | Required | Description |
|---|---|---|---|
serverId | integer | Required | The unique numeric ID of the server |
curl -X GET https://api.orbai.world/api/v1/servers/101200Server 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
| Field | Type | Description |
|---|---|---|
id | integer | Unique server identifier |
host_name | string | Server hostname |
public_ip | string | Public IP address of the server |
type | string | Server type (e.g., standard, premium, streaming) |
city | string | City where the server is located |
country | string | Two-letter ISO country code |
continent | string | Continent code (NA, SA, EU, AF, AS, OC) |
crypto_friendly | boolean | Whether the server is in a crypto-friendly jurisdiction |
bridge_capable | boolean | Whether the server supports bridge/obfuscation protocols |
bridge_country | string | Country code of the bridge exit point, if applicable |
bridge_priority | integer | Priority order for bridge selection (lower is higher priority) |
description | string | Human-readable description of the server |
hidden | boolean | Whether 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.