Skip to main content
GET
/
server-info
Get server information
curl --request GET \
  --url https://core.cyberun.cloud/api/v1/server-info
{
  "registration_enabled": false,
  "oauth_enabled": true,
  "oauth_providers": [
    {
      "id": "github",
      "display_name": "GitHub"
    }
  ]
}

Documentation Index

Fetch the complete documentation index at: https://docs.cyberun.cloud/llms.txt

Use this file to discover all available pages before exploring further.

Response

200 - application/json

Server information retrieved successfully.

Minimal server posture required to render the unauthenticated login / registration page. The full feature-flag catalog is not part of this response — it's returned from GET /users/me instead, so an unauthenticated caller cannot fingerprint which capabilities the deployment has licensed on.

registration_enabled
boolean
required

Whether the dashboard should show a "Sign up" link.

Example:

false

oauth_enabled
boolean
required

Whether the dashboard should show OAuth sign-in buttons.

Example:

true

oauth_providers
object[]
required

Public OAuth providers that the frontend can show on the login page.