API Reference | Ahzami Technologies

Die Architektur unserer Technologie

Präzise dokumentierte Endpunkte für AIX Aleph, SecureChain und LOT Nexus – entwickelt für Skalierung, Resilienz und neuronale Intelligenz.

npm install ahzami-api-sdk@latest
POST /v3/aleph/nodes

Erstellt einen neuen AIX Aleph Node mit neuronalen Eigenschaften. Die Antwort enthält den initialen Lernstatus und Konnektivitätsdaten.

Request

POST https://api.ahzami.com/v3/aleph/nodes
Headers: {
  "Authorization": "Bearer YOUR_API_KEY",
  "Content-Type": "application/json"
}
Body: {
  "neural_profile": "smart-city-v2",
  "learning_rate": 0.7,
  "connections": ["iot", "blockchain"]
}

Response

201 Created
{
  "node_id": "aleph_nd9x2k5p",
  "status": "initializing",
  "learning_capacity": 0.42,
  "endpoints": {
    "rest": "https://nd9x2k5p.api.ahzami.com",
    "websocket": "wss://nd9x2k5p.ws.ahzami.com"
  },
  "estimated_training_time": "2.7h"
}

Parameter

ParameterTypBeschreibung
neural_profilestringVordefinierter neuronaler Profiltyp
learning_ratefloatAnfängliche Lernrate (0.1-1.0)
connectionsarrayInitiale Systemverbindungen
GET /v3/aleph/nodes/{node_id}/status

Ruft den aktuellen Status und Lernfortschritt eines AIX Aleph Nodes ab. Enthält Metriken zur neuronalen Aktivität.

Beispiel Request

GET https://api.ahzami.com/v3/aleph/nodes/aleph_nd9x2k5p/status
Headers: {
  "Authorization": "Bearer YOUR_API_KEY"
}

Beispiel Response

200 OK
{
  "node_id": "aleph_nd9x2k5p",
  "status": "active",
  "learning_progress": 0.87,
  "last_trained": "2023-11-15T14:32:19Z",
  "neural_activity": {
    "connections": 142,
    "throughput": "1.2TB/h",
    "latency": "3.7ms"
  }
}

Bereit für die Integration?

Testen Sie unsere APIs direkt im Browser oder laden Sie unsere Postman Collection für alle Endpunkte herunter.