Takes a query context cache key and returns payload data response for the given query.
Request
Provide your bearer token in the Authorization
header when making requests to protected resources. Example:Authorization: Bearer ********************
Request Code Samples
curl --location --request GET '/chart/data/' \
--header 'Authorization: Bearer <token>'
Responses
{
"result": [
{
"annotation_data": [
{
"property1": "string",
"property2": "string"
}
],
"applied_filters": [
{}
],
"cache_key": "string",
"cache_timeout": 0,
"cached_dttm": "string",
"data": [
{}
],
"error": "string",
"is_cached": true,
"query": "string",
"rejected_filters": [
{}
],
"rowcount": 0,
"stacktrace": "string",
"status": "stopped"
}
]
}
Modified at 2025-06-04 22:27:17