Path Parameters
Query Parameters
Items per page (default: 20)
Filter by type: content or asset
Search term for name/description
Filter to user’s favorites only
Filter by folder (null for root level)
Response
Returns a paginated list of SavedSearch objects.
{
"data": [
{
"id": "ss123",
"name": "Draft Articles",
"type": "content",
"folderId": "folder789",
"description": "All draft articles in the system",
"createdAt": "2024-03-20T10:00:00Z",
"updatedAt": "2024-03-21T15:30:00Z",
"metadata": {
"lastUsed": "2024-03-21T15:30:00Z",
"useCount": 42
}
}
],
"pagination": {
"page": 1,
"limit": 20,
"total": 5,
"pages": 1
}
}
Code Examples
curl -X GET "https://api.metabind.ai/v1/organizations/org123/projects/proj456/saved-searches?type=content&favorite=true" \
-H "Authorization: Bearer YOUR_API_KEY"