API7 Docs
API7 GatewayAPI7 Enterprise Admin APIsGet all system infos

Get all system infos

GET /api/system_infos

GET /api/system_infos

Interactive request editor loads with JavaScript.

Authorization

X-API-KEY<token>

In: header

Response Body

application/json

application/json

curl -X GET "$API_BASE_URL/api/system_infos"

Successfully retrieved the system information.

{
  "value": {
    "api7_ee_version": "v3.8.10",
    "deployment_id": "d1e1ea2b-2cff-4c38-b57e-408e1dffec52",
    "deployed_at": 1742288230,
    "free_trial_expired_at": 1742288230
  }
}
Complete operation details and schema variants

GET /api/system_infos

Get all system infos

Retrieve system metadata for the dashboard environment, such as version details, license state, and runtime information used for administration and diagnostics.

Parameters

Responses

  • 200: Successfully retrieved the system information.
  • allOf variant 1
  • value (object, optional): The specific resource.
  • allOf variant 2
  • value (object, optional):
  • value.api7_ee_version (string, optional): API7 Enterprise version.
  • value.deployment_id (string, optional): A unique identifier that is automatically generated with each deployment of API7 Enterprise.
  • value.deployed_at (integer, optional): Timestamp indicating when the API7 EE dashboard was deployed.
  • value.free_trial_expired_at (integer, optional): Free trial expiry time.
  • 400: Bad Request — The request was malformed or contained invalid parameters. Check the error_msg field for details.
  • value (object, optional): The specific resource.
  • error_msg (string, optional): The error message.

cURL

curl -X GET '$API_BASE_URL/api/system_infos'