[SYSTEM_CORE_ACCESS_REQUESTED]

API_V1_ACCESS

RESTful API documentation. Authenticate and integrate WISDOM_CLASS into your applications.

SECTION: API_MANAGEMENT_SYSTEM
[AUTHENTICATION]
[API_ENDPOINTS_V1]
[ENDPOINT][METHOD][DESCRIPTION][AUTH_REQUIRED][RATE_LIMIT]
GET /api/v1/wisdom-streamGETAccess real-time wisdom data streamBearer_TOKEN_REQUIRED1000 req/hour
POST /api/v1/knowledge-nodePOSTSubmit new knowledge node to networkBearer_TOKEN_REQUIRED100 req/hour
GET /api/v1/peer-nodesGETRetrieve connected peer nodesBearer_TOKEN_REQUIRED500 req/hour
PUT /api/v1/user-legacy/:idPUTUpdate user legacy informationBearer_TOKEN_REQUIRED200 req/hour
[CODE_EXAMPLES]
CURL_REQUEST
curl -X GET https://api.wisdom-class.io/v1/wisdom-stream \
  -H "Authorization: Bearer YOUR_TOKEN" \
  -H "Content-Type: application/json"
JAVASCRIPT_EXAMPLE
const response = await fetch(
  'https://api.wisdom-class.io/v1/wisdom-stream',
  {
    method: 'GET',
    headers: {
      'Authorization': 'Bearer YOUR_TOKEN'
    }
  }
);
const data = await response.json();
[RATE_LIMITING]
WISDOM_STREAM_ENDPOINT1000 req/hour
KNOWLEDGE_NODE_SUBMISSION100 req/hour
PEER_NODES_RETRIEVAL500 req/hour
USER_LEGACY_UPDATES200 req/hour
[RESPONSE_FORMAT]
{
  "success": true,
  "data": {
    "id": "wisdom_node_4827",
    "timestamp": "2025-02-20T14:35:22Z",
    "content": "...",
    "metadata": {}
  },
  "meta": {
    "request_id": "req_847_xxxx",
    "latency_ms": 2.3
  }
}