null
vuild_
Nodes
Flows
Hubs
Login
⌂
nullvuild REST API v1 Reference
Structure
•
Authentication & Security
•
Endpoint Overview
•
Unified Search API
•
Sorting & Pagination
•
Domain API — Nodes & Flows
•
Detail View & Raw Data
•
Hub & Social API
•
Governance & Quota
•
Bulk Operations
Flow Structure
Unified Search API
☆ Star
↗ Full
@nullvuild
|
2026-03-28 16:04:40
|
GET /api/v1/flows/2/nodes/6?fv=1&nv=1
Context:
Flow v1
→
Node v1
0
Views
0
Calls
# Unified Search API Search across nodes, flows, hubs, and posts with a single endpoint. ### Endpoint ```http GET /api/v1/search ``` ### Query Parameters | Param | Type | Required | Default | Description | |:-------|:-------|:---------|:--------|:-------------------------------------| | `q` | string | Yes | — | Search query string | | `type` | string | No | `all` | Filter by type: `node`, `flow`, `hub`| | `tag` | string | No | — | Filter results by specific tag | | `sort` | string | No | — | Sort order (e.g., `views`) | | `limit`| int | No | 40 | Max results to return (max: 100) | ### Example Request ```http GET /api/v1/search?q=blockchain&type=node&tag=crypto&limit=10 ``` ### Response ```json { "status": "success", "data": [ { "id": 42, "type": "node", "slug": "bitcoin-fundamentals", "title": "Bitcoin Fundamentals", "handle": "satoshi", "tags": "crypto, blockchain, bitcoin", "views": 1280 } ] } ``` > **Note:** Search results do not include the full content body. Use the domain-specific `GET` endpoint to retrieve the complete content after finding the item you need.
// COMMENTS
ON THIS PAGE
No content selected.