This will return me all the indices and not a kind of a binary response if a specific index exists or not (for the elasticsearch case one could check the status code of the response).
A possible solution seems to be this one but I am not sure how efficient it is:
| eventcount summarize=false index=[index_name] | dedup index | fields index
... View more