Get Stacked Image Info

GET /livestack/image/{target}/{filter}/info

Gets information about the stacked image, like filter, target and stack count.

Path parameters

  • target string Required
  • filter string Required

Responses

  • 200 application/json

    Successful response

    Hide response attributes Show response attributes object
    • Response object
      Hide Response attributes Show Response attributes object
      • IsMonochrome boolean
      • StackCount integer

        Only present if IsMonochrome is true

      • RedStackCount integer

        Only present if IsMonochrome is false

      • GreenStackCount integer

        Only present if IsMonochrome is false

      • BlueStackCount integer

        Only present if IsMonochrome is false

      • Filter string
      • Target string
    • Error string
    • StatusCode integer
    • Success boolean
    • Type string
  • 500 application/json

    Internal server error, Unknown error

    Hide response attributes Show response attributes object
    • Response string
    • Error string
    • StatusCode integer
    • Success boolean
    • Type string
GET /livestack/image/{target}/{filter}/info
curl \
 --request GET 'http://localhost:1888/v2/api/livestack/image/M31/RGB/info'
Response examples (200)
{
  "Response": {
    "IsMonochrome": true,
    "StackCount": 10,
    "RedStackCount": 10,
    "GreenStackCount": 10,
    "BlueStackCount": 10,
    "Filter": "RGB",
    "Target": "M31"
  },
  "Error": "string",
  "StatusCode": 200,
  "Success": true,
  "Type": "API"
}
Response examples (500)
{
  "Response": "string",
  "Error": "Unknown error",
  "StatusCode": 500,
  "Success": false,
  "Type": "API"
}