cURL
curl --request GET \ --url https://api.example.com/v1/organizations/{organizationId}/projects/{projectId}/folders
{ "data": [ {} ], "pagination": {} }
Retrieve all folders for a project
content
asset
{ "data": [ { "id": "folder123", "name": "Marketing Content Searches", "parentId": null, "type": "content", "order": 1.0, "createdAt": "2024-03-20T10:00:00Z", "updatedAt": "2024-03-20T10:00:00Z" }, { "id": "folder456", "name": "Image Asset Searches", "parentId": null, "type": "asset", "order": 2.0, "createdAt": "2024-03-20T10:00:00Z", "updatedAt": "2024-03-20T10:00:00Z" } ], "pagination": { "page": 1, "limit": 20, "total": 2, "pages": 1 } }
curl -X GET "https://api.metabind.ai/v1/organizations/org123/projects/proj456/folders?type=content" \ -H "Authorization: Bearer YOUR_API_KEY"