Skip to main content
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_KEY

Basis‑URL

Alle API‑Endpunkte sind relativ zu dieser Basis‑URL.

https://api.aldor.io/v1

Endpunkte

GET/api/funnels
Auth erforderlich

List all funnels in your organization

GET/api/funnels/:id
Auth erforderlich

Get a specific funnel by ID

GET/api/leads
Auth erforderlich

List all leads with pagination and filters

GET/api/leads/export
Auth erforderlich

Export leads as CSV

GET/api/funnels/:id/events
Auth erforderlich

Get 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.