Search & Discovery
AINative provides a unified search layer across the platform. You can search users, posts, groups, and events with a single request, or target specific content types. The search system also powers personalized recommendations and trending discovery.
Base URL: https://api.ainative.studio
Authentication: All search endpoints require Authorization: Bearer <your_api_key>. Search results are scoped to the authenticated user's tenant.
What you can search
| Content type | Endpoint |
|---|---|
| All types at once | GET /api/v1/search |
| Users | GET /api/v1/search/users |
| Posts | GET /api/v1/search/posts |
| Groups | GET /api/v1/search/groups |
| Events | GET /api/v1/search/events |
| Vector documents | POST /api/v1/semantic-search |
Discovery & recommendations
| Feature | Endpoint |
|---|---|
| Autocomplete suggestions | GET /api/v1/public/zerodb/search/suggestions |
| Trending posts | GET /api/v1/trending/posts |
| Trending groups | GET /api/v1/trending/groups |
| Trending searches | GET /api/v1/trending/searches |
| Trending summary | GET /api/v1/trending/summary |
| Recommended posts | GET /api/v1/search/recommendations/posts |
| Recommended users | GET /api/v1/search/recommendations/users |
| Recommended groups | GET /api/v1/search/recommendations/groups |
Sub-pages
- Search & Recommendations API — Full endpoint reference with parameters and examples