The Nexora API backs every CLI command and SDK call. Use it to integrate provisioning, observability, and policy directly into your own tooling.
Generate an API key from your account settings and pass it as a bearer token on every request. Keys are scoped to an environment set and can be revoked instantly.
curl https://api.nexorasystems.com/v1/environments \
-H "Authorization: Bearer $NEXORA_API_KEY"/v1/environmentsList every environment in your account.
/v1/environmentsCreate an environment from a manifest.
/v1/environments/{id}Retrieve status, resources, and telemetry for one environment.
/v1/environments/{id}Tear down an environment and its resources.
/v1/policiesRegister a policy guardrail to enforce at plan time.
/v1/audit-logStream audit log entries, filterable by resource or actor.
Every response is paginated JSON with a consistent envelope, regardless of which resource you’re querying.
{
"data": [
{
"id": "env_8f2a1c",
"name": "production-us-east",
"provider": "aws",
"status": "healthy",
"created_at": "2026-02-11T09:32:00Z"
}
],
"has_more": false
}Start on the free plan to get an API key immediately, or talk to us about Enterprise rate limits.