curl --request GET \
--url https://api.example.com/v1/organizations/{organizationId}/projects/{projectId}/collections{
"data": [
{}
],
"pagination": {}
}Retrieve all collections for a project
curl --request GET \
--url https://api.example.com/v1/organizations/{organizationId}/projects/{projectId}/collections{
"data": [
{}
],
"pagination": {}
}{
"data": [
{
"id": "coll123",
"name": "UI Components",
"folderId": null,
"createdAt": "2024-03-20T10:00:00Z",
"updatedAt": "2024-03-20T10:00:00Z"
},
{
"id": "coll124",
"name": "Layout Components",
"folderId": null,
"createdAt": "2024-03-21T10:00:00Z",
"updatedAt": "2024-03-21T10:00:00Z"
}
],
"pagination": {
"page": 1,
"limit": 20,
"total": 5,
"pages": 1
}
}
curl -X GET "https://api.metabind.ai/v1/organizations/org123/projects/proj456/collections" \
-H "Authorization: Bearer YOUR_API_KEY"