Valqore DocsDocs
API ReferenceREST API Reference

REST API Reference

REST API endpoint reference and authentication.

REST API Reference

Valqore exposes a REST API for programmatic access to governance evaluation, cluster scanning, compliance, and more.

Base URL

http://localhost:8000

Override with VALQORE_API_URL for remote deployments.

Start the Server

valqore serve --host 0.0.0.0 --port 8000

Endpoints

MethodPathDescription
POST/api/v1/evaluateEvaluate manifests against governance rules
POST/api/v1/scanScan a live Kubernetes cluster
POST/api/v1/validateCompare current vs proposed configuration
GET/api/v1/rulesList all governance rules
GET/api/v1/complianceCompliance framework mappings
GET/api/v1/healthHealth check
POST/api/v1/carbon/estimateCarbon footprint estimation
POST/api/v1/carbon/reportCarbon report generation
GET/api/v1/scores/historyScore trending over time
GET/api/v1/scores/trendScore trend analysis
POST/api/v1/finops/anomaliesCost anomaly detection
POST/api/v1/finops/forecastCost forecasting
POST/api/v1/webhookKubernetes admission webhook

Authentication

Pass the API key in the X-API-Key header:

curl -X POST http://localhost:8000/api/v1/evaluate \
  -H "X-API-Key: your-api-key-here" \
  -H "Content-Type: application/json" \
  -d '{ ... }'
Was this helpful?
Valqore Docs
Copyright © Valqore. All rights reserved.