For the complete documentation index, see llms.txt. This page is also available as Markdown.

Dashboard

All dashboard endpoints

List all services

get
Authorizations
PRIVATE-TOKENstringRequired
Responses
200

OK

application/json
idinteger · integerRead-onlyRequired

The ID of the service

servicestringRead-onlyRequired

The name of the service

amountinteger · integerRead-onlyRequired

The amount of service the customer has

get/v3/dashboard/service
GET /v3/dashboard/service HTTP/1.1
Host: api.i3d.net
PRIVATE-TOKEN: YOUR_API_KEY
Accept: */*
[
  {
    "id": 1,
    "service": "text",
    "amount": 1
  }
]

Get the status of the platform

get
Authorizations
PRIVATE-TOKENstringRequired
Responses
200

OK

application/json
statusinteger · integerRead-onlyRequired

The status of all the systems

  • 1: All systems operational
  • 2: Multiple systems have performance issues
  • 3: Multiple systems are offline
  • 4: All systems are offline
get/v3/dashboard/status
GET /v3/dashboard/status HTTP/1.1
Host: api.i3d.net
PRIVATE-TOKEN: YOUR_API_KEY
Accept: */*
[
  {
    "status": 1,
    "groups": [
      {
        "name": "text",
        "status": 1,
        "components": [
          {
            "name": "text",
            "status": 1
          }
        ]
      }
    ]
  }
]

Last updated

Was this helpful?