curl --request GET \ --url 'http://localhost:3000/api/v1/projects?limit=20&offset=0&searchWord=AI' \ --header 'Authorization: Bearer <token>'
{ "success": true, "projects": [ { "id": "proj_123abc", "name": "AI Chatbot", "description": "Customer service chatbot", "icon": "🤖", "color": "#3B82F6", "createdAt": "2024-01-01T00:00:00Z", "updatedAt": "2024-01-15T10:30:00Z" } ], "nextCursor": "cursor_xyz", "nextOffset": 20, "hasMore": true, "total": 45, "message": "Projects retrieved successfully" }
Retrieves all projects for the authenticated user with optional search and pagination
searchWord