On this pageQuery ParametersExample RequestResponseProjects & ClipsProjectsList ProjectsCopy pageGET https://app.resemble.ai/api/v2/projects Query Parameters ParameterTypeRequiredNotespageinteger❌Page number for pagination.page_sizeinteger❌Number of items per page. Example Request $curl 'https://app.resemble.ai/api/v2/projects?page=1&page_size=10' \> -H 'Authorization: Bearer YOUR_API_TOKEN' Response 1{2 "success": true,3 "page": 1,4 "total_results": 40,5 "page_count": 4,6 "items": [7 {8 "uuid": "PROJECT_UUID",9 "name": "Game NPC Library",10 "description": "Clips for characters",11 "is_collaborative": true,12 "is_archived": false,13 "created_at": "2024-01-15T10:30:00Z",14 "updated_at": "2024-01-15T10:32:00Z"15 }16 ]17}