Get Stacked Image

GET /livestack/{target}/{filter}

Gets the stacked image from the livestack plugin for a given target and filter.

Path parameters

  • target string Required
  • filter string Required

Responses

  • Successful response

    Hide response attributes Show response attributes object
    • Response 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/{target}/{filter}
curl \
 --request GET 'http://localhost:1888/v2/api/livestack/M31/RGB'
Response examples (200)
{
  "Response": "<base64 encoded image>",
  "Error": "string",
  "StatusCode": 200,
  "Success": true,
  "Type": "API"
}
Response examples (500)
{
  "Response": "string",
  "Error": "Unknown error",
  "StatusCode": 500,
  "Success": false,
  "Type": "API"
}