Dev Space
DemoGitHubDiscord Server
  • 🏠Dev Space
  • 💡Features
  • 📄Changelogs
  • â„šī¸Credits
  • Guides
    • 🌐Website Guides
      • Install Dev Space Website
    • ⚡Agent Guides
      • Install Dev Space Agent
  • MongoDB Guides
    • MongoDB Admin
  • What is docker?
  • Accounts
    • 🙂Profile
  • Teams
    • đŸ˜ī¸Teams
    • 🔒Permissions
    • 🤖API
      • Client
      • Console
      • Docker
      • Roles
      • Members
      • Servers
      • Users
      • Models
  • Team Resources
    • đŸ–Ĩī¸Servers
    • 🎮Consoles
Powered by GitBook
On this page
  1. Teams
  2. API

Servers

PreviousMembersNextUsers

Manage Team servers and information.

🤖

Get a list of servers.

get
Authorizations
Query parameters
showIpbooleanOptionalDefault: false
Responses
200
Success
application/json
400
Bad Request
application/json
401
Unauthorized
application/json
403
Forbidden
application/json
get
GET /api/servers HTTP/1.1
Host: devspace.fluxpoint.dev
Authorization: YOUR_API_KEY
Accept: */*
{
  "success": true,
  "code": 1,
  "message": "text",
  "data": [
    {
      "id": "text",
      "name": "text",
      "owner_id": "text",
      "vanity_url": "text",
      "created_at": "2025-05-12T17:46:09.642Z",
      "is_online": true,
      "ip": "text"
    }
  ]
}

Get a server.

get
Authorizations
Path parameters
serverIdstringRequiredDefault: ""
Query parameters
showIpbooleanOptionalDefault: false
Responses
200
Success
application/json
400
Bad Request
application/json
401
Unauthorized
application/json
403
Forbidden
application/json
404
Not Found
application/json
get
GET /api/servers/{serverId} HTTP/1.1
Host: devspace.fluxpoint.dev
Authorization: YOUR_API_KEY
Accept: */*
{
  "success": true,
  "code": 1,
  "message": "text",
  "data": {
    "id": "text",
    "name": "text",
    "owner_id": "text",
    "vanity_url": "text",
    "created_at": "2025-05-12T17:46:09.642Z",
    "is_online": true,
    "ip": "text"
  }
}

Get server system info.

get
Authorizations
Path parameters
serverIdstringRequiredDefault: ""
Responses
200
Success
application/json
400
Bad Request
application/json
401
Unauthorized
application/json
403
Forbidden
application/json
404
Not Found
application/json
get
GET /api/servers/{serverId}/system HTTP/1.1
Host: devspace.fluxpoint.dev
Authorization: YOUR_API_KEY
Accept: */*
{
  "success": true,
  "code": 1,
  "message": "text",
  "data": {
    "id": "text",
    "name": "text",
    "agent_version": "text",
    "agent_net": "text",
    "uptime_text": "text",
    "uptime_number": 1,
    "operating_system": "text",
    "cpu_count": 1,
    "storage_total_size": 1,
    "storage_free_size": 1,
    "storage_text": "text",
    "ram_total": 1,
    "ram_text": "text",
    "docker": {
      "networks_count": 1,
      "docker_version": "text",
      "api_version": "text",
      "stacks_count": 1,
      "all_containers_count": 1,
      "running_containers_count": 1,
      "stopped_containers_count": 1,
      "images_count": 1,
      "volumes_count": 1,
      "plugins_count": 1
    }
  }
}

Get server host details.

get
Authorizations
Path parameters
serverIdstringRequiredDefault: ""
Responses
200
Success
application/json
400
Bad Request
application/json
401
Unauthorized
application/json
403
Forbidden
application/json
404
Not Found
application/json
get
GET /api/servers/{serverId}/host HTTP/1.1
Host: devspace.fluxpoint.dev
Authorization: YOUR_API_KEY
Accept: */*
{
  "success": true,
  "code": 1,
  "message": "text",
  "data": {
    "id": "text",
    "name": "text",
    "agent_version": "text",
    "agent_net": "text",
    "uptime_text": "text",
    "uptime_number": 1,
    "operating_system": "text",
    "cpu_count": 1,
    "storage_total_size": 1,
    "storage_free_size": 1,
    "storage_text": "text",
    "ram_total": 1,
    "ram_text": "text",
    "docker": {
      "networks_count": 1,
      "docker_version": "text",
      "api_version": "text",
      "stacks_count": 1,
      "all_containers_count": 1,
      "running_containers_count": 1,
      "stopped_containers_count": 1,
      "images_count": 1,
      "volumes_count": 1,
      "plugins_count": 1
    },
    "ip": "text",
    "kernel_version": "text",
    "root_directory": "text",
    "storage_driver": "text",
    "logging_driver": "text",
    "system_driver": "text",
    "volume_plugins": [
      "text"
    ],
    "network_plugins": [
      "text"
    ],
    "log_plugins": [
      "text"
    ],
    "auth_plugins": [
      "text"
    ],
    "hostname": "text",
    "warnings": [
      "text"
    ]
  }
}
  • GETGet a list of servers.
  • GETGet a server.
  • GETGet server system info.
  • GETGet server host details.