Documentation
Lintel is an inspect-only API for CI/CD. Authenticate with an API key and call the inspection endpoints to receive structured findings.
Base URL
https://api.lintelapi.com (or your deployment base).
Auth
Bearer token. Send your API key in the Authorization header:
Authorization: Bearer YOUR_API_KEY Endpoints
- Terraform plan —
POST /v1/inspect/terraform-plan. Body: raw JSON fromterraform show -json <planfile>. - Dockerfile —
POST /v1/inspect/dockerfile. Body: JSON{"dockerfile": "…"}(content as string).
Both return JSON with findings and summary. Same input → same output.
CI examples
Copy-paste CI examples (GitHub Actions, GitLab CI) are in the lintel-ci-examples repo.