- API v3 Introduction
- 3rd Party API Integrations
- DNS Integrations
- Server Integrations
- External Backup Storages
- List 3rd Party API Integrations
- 3rd Party API Integration Object
- Delete 3rd Party API Integration
- Servers
- Manage
- Health & Monitoring
- Databases
- Database Users
- System Users
- Deployment Keys
- Services
- Cron Job
- Supervisor
- SSH Keys
- SSH Session
- SSH Config
- Activity Logs
- Security - Firewall
- Security - Fail2Ban
- Settings - PHP
- Settings - Auto Security Update
- Settings - Change IP Address
- Web Applications
- Manage
- Domain Name
- SSL/TLS
- SSL Basic (WebApp SSL)
- SSL Advanced (Domain SSL) For Business/Enterprise
- Check SSL Method (Basic/Advanced) & AutoSSL Status
- Update/Change SSL Method (Basic/Advanced) & AutoSSL Status
- SSL Advanced – Install/Deploy Domain SSL
- SSL Advanced – Domain SSL Object
- SSL Advanced – Update Domain SSL Config
- SSL Advanced – Redeploy Domain SSL (Let’s Encrypt only)
- SSL Advanced – Delete Domain SSL
- Cloning
- Tools
- WordPress - RunCloud Hub
- WordPress - Staging
- WordPress - General Settings
- Activity Logs
- Settings
- Backup
- Atomic Deployment
- Static Data
List Servers
GET
/servers
Request
Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.Example:
Authorization: Bearer ********************
Header Params
accept
string
required
Example:
application/json
Body Params application/json
object {0}
Example
{}
Request samples
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://manage.runcloud.io/api/v3/servers' \
--header 'accept: application/json' \
--header 'Content-Type: application/json' \
--data-raw ''
Responses
🟢200Success
application/json
Body
id
integer
required
name
string
required
provider
string
required
stack
string
required
ipAddress
string
required
country_iso_code
string
required
os
string
required
osVersion
string
required
connected
boolean
required
online
boolean
required
agentVersion
string
required
phpCLIVersion
string
required
softwareUpdate
boolean
required
securityUpdate
boolean
required
transferStatus
string
required
created_at
string
required
tags
array[string]
required
Example
{
"data": [
{
"id": 1903,
"name": "server hello",
"provider": "Akamai (Linode)",
"stack": "nginx",
"ipAddress": "139.162.123.253",
"country_iso_code": "JP",
"os": "Ubuntu",
"osVersion": "focal",
"connected": true,
"online": true,
"agentVersion": "2.8.7-1+ubuntu20.04+11",
"phpCLIVersion": "php81rc",
"softwareUpdate": false,
"securityUpdate": true,
"transferStatus": "AVAILABLE",
"created_at": "2024-07-09 06:56:05",
"tags": []
},
{
"id": 11101,
"name": "server hi",
"provider": "Akamai (Linode)",
"stack": "nginx",
"ipAddress": "172.104.88.73",
"country_iso_code": "JP",
"os": "Ubuntu",
"osVersion": "focal",
"connected": true,
"online": true,
"agentVersion": "2.8.7-1+ubuntu20.04+11",
"phpCLIVersion": "php81rc",
"softwareUpdate": false,
"securityUpdate": true,
"transferStatus": "AVAILABLE",
"created_at": "2024-07-09 06:41:52",
"tags": []
},
{
"id": 30303,
"name": "server bello",
"provider": "digitalocean",
"stack": "nginx",
"ipAddress": "12.24.3.232",
"country_iso_code": null,
"os": "Ubuntu",
"osVersion": null,
"connected": false,
"online": false,
"agentVersion": null,
"phpCLIVersion": "php81rc",
"softwareUpdate": false,
"securityUpdate": true,
"transferStatus": "AVAILABLE",
"created_at": "2024-07-16 02:10:42",
"tags": []
},
{
"id": 762,
"name": "uiux improvement test ali",
"provider": "Akamai (Linode)",
"stack": "nginx",
"ipAddress": "172.105.197.220",
"country_iso_code": "JP",
"os": "Ubuntu",
"osVersion": "focal",
"connected": true,
"online": true,
"agentVersion": "2.8.7-1+ubuntu20.04+11",
"phpCLIVersion": "php81rc",
"softwareUpdate": false,
"securityUpdate": true,
"transferStatus": "AVAILABLE",
"created_at": "2024-07-11 02:35:00",
"tags": []
}
],
"meta": {
"pagination": {
"total": 4,
"count": 4,
"per_page": 15,
"current_page": 1,
"total_pages": 1,
"links": {}
}
}
}
Modified at 2024-10-16 08:42:31