GET /dashboard/service/{id}/dedicated

Get server information

Returns detailed information about a dedicated server including hardware specifications, network configuration, and location details.

Parameters

NameTypeInDescription
id*
integerpathThe service ID of the dedicated server

Response

200
403
404
successboolean
dataobject
serverobject
osstring

Operating system name

os_versionstring

Operating system version

statusstring

Current power status of the server

power onpower offrebooting
primary_ipstring

Primary IP address of the server

provision_statestring

Current provisioning state of the server

availabledeployingactiveerrorcleaningclean waitdeleting
networkobject
ingress_bandwidthnumber

Ingress bandwidth usage in bytes

egress_bandwidthnumber

Egress bandwidth usage in bytes

interfacesarray
locationobject
citystring

Datacenter city

countrystring

Country code

datacenterstring

Datacenter name

rackstring

Rack location

hardwareobject
manufacturerstring

Hardware manufacturer

modelstring

Hardware model

cpustring

CPU model and specifications

memorynumber

Total memory in bytes

storagearray

Request

curl -X GET "https://api.royalehosting.net/dashboard/service/{id}/dedicated" \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "x-organization-id: YOUR_ORG_ID"

Response

{
  "success": true,
  "data": {
    "server": {
      "os": "Ubuntu",
      "os_version": "24.04",
      "status": "power on",
      "primary_ip": "192.168.1.100",
      "provision_state": "active",
      "network": {
        "ingress_bandwidth": 0,
        "egress_bandwidth": 0,
        "interfaces": [
          {
            "name": "eth0",
            "mac_address": "00:1a:2b:3c:4d:5e",
            "link_speed": 1000,
            "product": "82599ES 10-Gigabit SFI/SFP+ Network Connection"
          }
        ]
      },
      "location": {
        "city": "Amsterdam",
        "country": "NL",
        "datacenter": "AMS-DC1",
        "rack": "R01"
      },
      "hardware": {
        "manufacturer": "Dell Inc.",
        "model": "PowerEdge R630",
        "cpu": "Intel(R) Xeon(R) CPU E5-2650 v4 @ 2.20GHz",
        "memory": 67108864,
        "storage": [
          {
            "manufacturer": "Samsung",
            "model": "SSD 850 EVO",
            "size": 500107862016,
            "serial": "S21NNSAF123456",
            "hdd": false
          }
        ]
      }
    }
  }
}