Introduction
AI Hub provides a unified entry point to list AI resources in your organization, including assistants and flows built with Process Flow.
Assistant management and conversation endpoints are documented in the Assistant section. Flow endpoints are documented here.
Base URL (AI Hub)
All AI Hub endpoints are available under:
/api/ai-hub
Base URL (Process Flow)
Process Flow endpoints use:
/api/agent-react-flow
Get AI Hub Items
Returns a combined list of assistants and agents (or a filtered subset).
Endpoint
GET /api/ai-hub
Query Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
organization_id | uuid | Yes | Organization identifier |
user_id | uuid | Yes | User identifier |
page | number | No | Page number (default: 1) |
items_per_page | number | No | Items per page (default: 10) |
search | string | No | Search term |
type | string | No | all, agents, or assistants |
created_by_users | uuid | No | Filter by creator user IDs |
is_working | boolean | No | Filter by running/working status |
is_shared | boolean | No | Filter by shared items |
Example Request
GET /api/ai-hub?organization_id=550e8400-e29b-41d4-a716-446655440000&user_id=660e8400-e29b-41d4-a716-446655440000&type=all&page=1&items_per_page=10
