API Reference
The REST API exposes every core capability of the AeThex platform. Authenticate with OAuth 2.1 or personal access tokens, call idempotent endpoints, and subscribe to webhooks to react to changes.
Integrate programmatically with the AeThex API
Authentication
OAuth Client Credentials Grant
curl -X POST https://api.aethex.dev/v1/auth/token \
-u CLIENT_ID:CLIENT_SECRET \
-d "grant_type=client_credentials" \
-d "scope=projects:read deployments:write"Request Example
fetch("https://api.aethex.dev/v1/projects?page=1&limit=25", {
headers: {
Authorization: "Bearer ${TOKEN}",
"AeThex-Environment": "production",
},
}).then(async (res) => {
if (!res.ok) throw new Error(await res.text());
console.log("Projects", await res.json());
});Core Endpoints
Method
Path
Description
Webhooks
Webhook Events
Error Handling
Code
Label
Hint
SDK Documentation
Last updated
