[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-stream | GET | Access real-time wisdom data stream | Bearer_TOKEN_REQUIRED | 1000 req/hour |
| POST /api/v1/knowledge-node | POST | Submit new knowledge node to network | Bearer_TOKEN_REQUIRED | 100 req/hour |
| GET /api/v1/peer-nodes | GET | Retrieve connected peer nodes | Bearer_TOKEN_REQUIRED | 500 req/hour |
| PUT /api/v1/user-legacy/:id | PUT | Update user legacy information | Bearer_TOKEN_REQUIRED | 200 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
}
}