research-lightdash-api
Researches and verifies Lightdash API behavior through documentation and live execution.
Install
mkdir -p .claude/skills/research-lightdash-api && curl -L -o skill.zip "https://agentskills.codes/api/skills/download/12221" && unzip -o skill.zip -d .claude/skills/research-lightdash-api && rm skill.zipInstalls to .claude/skills/research-lightdash-api
Activation
This is the description your AI agent reads to decide when to run this skill — the better it matches your request, the more reliably it fires.
Research and investigate Lightdash API endpoints to understand request/response schemas and behavior.Key capabilities
- →Search for API endpoint details in Lightdash documentation
- →Analyze documentation for request parameters and response structures
- →Check for the standard API Response Envelope
- →Perform live schema verification using `curl` or a Go script
- →Compare live JSON responses with documentation for discrepancies
- →Draft Go struct definitions based on verified schemas
How it works
The skill researches Lightdash API documentation and performs live verification against a running instance to confirm request/response schemas and identify discrepancies.
Inputs & outputs
When to use research-lightdash-api
- →Verify API endpoint behavior
- →Confirm request/response schema
- →Debug API integrations
About this skill
Research Lightdash API
Description
This skill is used to thoroughly research and investigate a Lightdash API endpoint. It involves researching official documentation and performing live verification against a running Lightdash instance to confirm the actual JSON schema, including request parameters and response bodies.
Input
The user should provide:
- API Endpoint: (e.g.,
/api/v1/projects/:projectUuid/spaces) - HTTP Method: (GET, POST, PUT, DELETE, PATCH)
- Documentation URL: (Optional) Link to the official Lightdash API docs.
Workflow
1. Documentation Research
- Search: Use
web_searchorWebFetchto find the endpoint details in the Lightdash API Docs. - Analysis:
- Identify required and optional request parameters (path, query, body).
- Note the expected response structure.
- Check if it uses the standard API Response Envelope.
2. Live Schema Verification
If you have access to a Lightdash instance and an API key:
-
Environment Setup:
- Check for
LIGHTDASH_API_KEYandLIGHTDASH_URL(defaults tohttps://app.lightdash.cloud) in the environment or.envfile. - If missing, inform the user: "To perform live verification, please provide
LIGHTDASH_API_KEYandLIGHTDASH_URL."
- Check for
-
Execution:
-
Use
curlto fetch the live response. This is the preferred method.# Example for GET request curl -X GET "${LIGHTDASH_URL}/api/v1/your/endpoint" \ -H "Authorization: ApiKey ${LIGHTDASH_API_KEY}" \ -H "Content-Type: application/json" -
For POST/PUT requests with a body:
curl -X POST "${LIGHTDASH_URL}/api/v1/your/endpoint" \ -H "Authorization: ApiKey ${LIGHTDASH_API_KEY}" \ -H "Content-Type: application/json" \ -d '{"key": "value"}' -
Alternatively, use the Schema Verification Script if a Go-based execution is preferred:
LIGHTDASH_API_KEY=your_key LIGHTDASH_URL=https://app.lightdash.cloud go run .claude/skills/research-lightdash-api/assets/verify_schema.go /api/v1/your/endpoint
-
-
Discrepancy Analysis:
- Compare the live JSON response with the documentation.
- Document any undocumented fields, differences in data types, or unexpected behaviors.
- For POST/PUT/PATCH requests, verify if the request body schema matches the documentation.
3. Response Analysis
- Envelope Check: Verify if the response is wrapped in the standard
{ "status": "ok", "results": ... }envelope. - Model Mapping: Draft the Go struct definitions (models) based on the verified schema, ensuring proper types (e.g., UUID strings, timestamps, nullable fields).
Reference
Assets
When not to use it
- →When there is no access to a Lightdash instance or API key for live verification
- →When the API endpoint is not part of Lightdash
- →When the user does not provide the API endpoint or HTTP method
Prerequisites
Limitations
- →Requires `LIGHTDASH_API_KEY` and `LIGHTDASH_URL` for live verification
- →Focuses on Lightdash API endpoints
- →Compares live JSON response with documentation
How it compares
This skill combines documentation research with live API verification to ensure the accuracy of Lightdash API schemas, providing a more thorough audit than relying solely on documentation or manual testing.
Compared to similar skills
research-lightdash-api side by side with the closest alternatives in the catalog.
| Skill | Installs | Updated | Safety | Difficulty |
|---|---|---|---|---|
| research-lightdash-api (this skill) | 0 | 6mo | Caution | Intermediate |
| n8n-expression-syntax | 6 | 4mo | No flags | Beginner |
| claude-in-chrome-troubleshooting | 2 | 2mo | Review | Intermediate |
| openrouter-common-errors | 3 | 27d | Caution | Intermediate |
Try saying
Example prompts that trigger this skill in your AI assistant.
You might also like
n8n-expression-syntax
czlonkowski
Validate n8n expression syntax and fix common errors. Use when writing n8n expressions, using {{}} syntax, accessing $json/$node variables, troubleshooting expression errors, or working with webhook data in workflows.
claude-in-chrome-troubleshooting
trailofbits
Diagnose and fix Claude in Chrome MCP extension connectivity issues. Use when mcp__claude-in-chrome__* tools fail, return "Browser extension is not connected", or behave erratically.
openrouter-common-errors
jeremylongshore
Execute diagnose and fix common OpenRouter API errors. Use when troubleshooting failed requests. Trigger with phrases like 'openrouter error', 'openrouter not working', 'openrouter 401', 'openrouter 429', 'fix openrouter'.
linear-common-errors
jeremylongshore
Diagnose and fix common Linear API errors. Use when encountering Linear API errors, debugging integration issues, or troubleshooting authentication problems. Trigger with phrases like "linear error", "linear API error", "debug linear", "linear not working", "linear authentication error".
gamma-common-errors
jeremylongshore
Debug and resolve common Gamma API errors. Use when encountering authentication failures, rate limits, generation errors, or unexpected API responses. Trigger with phrases like "gamma error", "gamma not working", "gamma API error", "gamma debug", "gamma troubleshoot".
groq-common-errors
jeremylongshore
Diagnose and fix Groq common errors and exceptions. Use when encountering Groq errors, debugging failed requests, or troubleshooting integration issues. Trigger with phrases like "groq error", "fix groq", "groq not working", "debug groq".