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
API Kategorien
- AIX Aleph Core
- SecureChain
- LOT Nexus
- Neural Networks
- IoT Edge
- Authentifizierung
- Webhooks
- Fehlercodes
Schnellzugriff
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"]
}
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"
}
{
"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
Parameter | Typ | Beschreibung |
---|---|---|
neural_profile | string | Vordefinierter neuronaler Profiltyp |
learning_rate | float | Anfängliche Lernrate (0.1-1.0) |
connections | array | Initiale 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"
}
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"
}
}
{
"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.