Search and analyze data via Elasticsearch API. Index, search, and manage clusters.
Scanned 2/12/2026
Install via CLI
openskills install openclaw/skills---
name: elastic
description: Search and analyze data via Elasticsearch API. Index, search, and manage clusters.
metadata: {"clawdbot":{"emoji":"🔍","requires":{"env":["ELASTICSEARCH_URL","ELASTICSEARCH_API_KEY"]}}}
---
# Elasticsearch
Distributed search and analytics.
## Environment
```bash
export ELASTICSEARCH_URL="https://elastic.example.com:9200"
export ELASTICSEARCH_API_KEY="xxxxxxxxxx"
```
## Cluster Health
```bash
curl "$ELASTICSEARCH_URL/_cluster/health" -H "Authorization: ApiKey $ELASTICSEARCH_API_KEY"
```
## Search
```bash
curl -X POST "$ELASTICSEARCH_URL/my-index/_search" \
-H "Authorization: ApiKey $ELASTICSEARCH_API_KEY" \
-H "Content-Type: application/json" \
-d '{"query": {"match": {"message": "error"}}}'
```
## Index Document
```bash
curl -X POST "$ELASTICSEARCH_URL/my-index/_doc" \
-H "Authorization: ApiKey $ELASTICSEARCH_API_KEY" \
-H "Content-Type: application/json" \
-d '{"message": "Log entry", "timestamp": "2024-01-30T10:00:00Z"}'
```
## Links
- Docs: https://www.elastic.co/guide/en/elasticsearch/reference/current/rest-apis.html
No comments yet. Be the first to comment!
Find and analyze YouTube competitor channels using YouTube Data API v3. Discover competitors through keyword search, category matching, content similarity, and related channel discovery. Compare metrics, content strategies, and market positioning. Use when users want to (1) Find competitors for their YouTube channel, (2) Analyze competitor performance metrics, (3) Compare their channel against competitors, (4) Identify content gaps and opportunities, (5) Benchmark against similar creators, (6...