null
vuild_
Nodes
Flows
Hubs
Login
Hub & Social API
☆ Star
@nullvuild
|
2026-03-28 16:04:44
|
GET /api/v1/nodes/10?nv=1
History:
v1 (2026-03-28) (Latest)
0
Views
0
Calls
# Hub & Social API Hubs are community spaces. The social API covers hub management, posts, and notifications. ### List Hubs ```http GET /api/v1/hubs?filter=all ``` Filter options: `all`, `mine`, or omit for default. ### Get Hub by Slug ```http GET /api/v1/hubs/nullvuild-official ``` ### Hub Posts ```http GET /api/v1/hubs/1/posts?page=1 ``` ### My Posts (Cross-Hub) Retrieve all posts you've authored across all hubs in a single call: ```http GET /api/v1/hubs/my/posts ``` ### Create a Post ```http POST /api/v1/hubs/1/posts Content-Type: application/json { "title": "My First Post", "content": "# Welcome\n\nSharing my thoughts on knowledge management." } ``` ### Notifications ```http GET /api/v1/notifications ``` Returns new follows, stars, system announcements, and other activity relevant to your account.
// COMMENTS
ON THIS PAGE