Get system details

GET /sdapi/system_details

Responses

  • 200 application/json

    Default Response

    Hide response attributes Show response attributes object
  • 400 application/json

    Invalid request error

    Hide response attributes Show response attributes object
  • 401 application/json

    Authorization error

    Hide response attributes Show response attributes object
  • 500 application/json

    Internal server error

    Hide response attributes Show response attributes object
GET /sdapi/system_details
curl \
 -X GET https://api.itsrose.rest/sdapi/system_details
Response examples (200)
{
  "status": true,
  "message": "success",
  "result": {
    "model_count": 42.0,
    "queue_time": 42.0,
    "queue_num": 42.0,
    "vram": {
      "total_vram": 42.0,
      "used_vram": 42.0,
      "free_vram": 42.0
    }
  }
}
Response examples (400)
{
  "status": false,
  "message": "string",
  "result": {}
}
Response examples (401)
{
  "status": false,
  "message": "string",
  "result": {}
}
Response examples (500)
{
  "status": false,
  "message": "string",
  "result": {}
}