APIâReferenz
APIâDokumentation
Integriere Aldor in deine Anwendungen mit unserer RESTâAPI.
Authentifizierung
Alle APIâAnfragen erfordern einen APIâSchlĂŒssel im AuthorizationâHeader.
Authorization: Bearer YOUR_API_KEYBasisâURL
Alle APIâEndpunkte sind relativ zu dieser BasisâURL.
https://api.aldor.io/v1Endpunkte
GET
Auth erforderlich/api/funnelsList all funnels in your organization
GET
Auth erforderlich/api/funnels/:idGet a specific funnel by ID
GET
Auth erforderlich/api/leadsList all leads with pagination and filters
GET
Auth erforderlich/api/leads/exportExport leads as CSV
GET
Auth erforderlich/api/funnels/:id/eventsGet funnel analytics events
BeispielâRequest
cURLâBeispiel
curl -X GET "https://api.aldor.io/v1/leads" \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json"Antwort
{
"data": [
{
"id": "lead_abc123",
"email": "john@example.com",
"phone": "+1234567890",
"completed": true,
"createdAt": "2026-02-01T12:00:00Z",
"funnel": {
"id": "funnel_xyz",
"name": "Contact Form"
}
}
],
"pagination": {
"page": 1,
"pageSize": 25,
"total": 156
}
}Bereit zur Integration?
Generiere einen APIâSchlĂŒssel im Dashboard.