Base URLs & Environments
Reference documentation for Aevum Zenth's multi-environment infrastructure. All endpoints enforce TLS 1.3, CORS policies, and OAuth 2.0 / mTLS authentication depending on scope.
Production
Live
Primary customer-facing infrastructure. 99.99% SLA, multi-region active-active deployment.
Staging
Ready
Pre-production mirror. Synced from prod nightly. Used for QA, partner integration testing, and UAT.
Development
Active
Feature-branch isolated environments. Auto-provisioned via CI/CD pipeline. Valid for 7 days.
Internal / Service Mesh
Restricted
Private VPC-only endpoints. Used for inter-service communication, database replication, and monitoring.
Environment URL Mapping
| Environment | Base URL | API Endpoint | CDN / Assets | Access |
|---|---|---|---|---|
| Production | https://app.aevumzenth.com |
https://api.aevumzenth.com/v1/ |
https://cdn.assets.aevumzenth.com |
Public |
| Staging | https://staging.app.aevumzenth.com |
https://staging.api.aevumzenth.com/v1/ |
https://staging.cdn.aevumzenth.com |
OAuth |
| Development | https://{branch}.dev.aevumzenth.com |
https://{branch}.dev.api.aevumzenth.com/v1/ |
https://dev.cdn.aevumzenth.com |
Internal |
| Internal Mesh | https://svc.mesh.internal |
https://api.mesh.internal/v1/ |
N/A | mTLS Only |
| GraphQL (Prod) | https://graph.aevumzenth.com |
https://graph.aevumzenth.com/query |
https://static.graph.aevumzenth.com |
Public |
Integration Examples
JavaScript / Fetch
cURL
Environment Vars
// Base URL configuration for Aevum Zenth API
const CONFIG = {
PROD_BASE: 'https://api.aevumzenth.com/v1',
STAGING_BASE: 'https://staging.api.aevumzenth.com/v1',
TIMEOUT: 5000,
RETRIES: 3
};
async function getResource(id) {
const res = await fetch(
`${CONFIG.PROD_BASE}/resources/${id}`,
{
headers: { 'Authorization': `Bearer ${token}` }
}
);
return res.json();
}
DNS & SSL Configuration
Primary A Record
*.aevumzenth.com → 198.51.100.0/24 (Anycast)
CNAME (CDN)
cdn.assets.aevumzenth.com → edge.zenth-cloud.net
Wildcard SSL
Lets Encrypt / DigiCert Global G3 (Auto-Renewal)
TLS Enforcement
TLS 1.3 Required · HSTS Enabled · OCSP Stapling