Hi Shafiuddin Russel,
If you have Wazuh Indexer installed, you can explore the alerts using its API.
For example, to get the alerts from the index wazuh-alerts-4.x-*, this should be the URL to query:
https://{ip_address}:9200/wazuh-alerts-4.x-*/_search?
This is an example body, where you will indicate the search filters:
{
"query": {
"bool": {
"must": [ {
}
},
"size": 10,
"sort": [
{
"timestamp": {
"order": "desc"
}
}
]
}
I hope this information helps.
Best regards.
Tomás Turina