Search Content
Content
Search Content
Search content using advanced filters
POST
Search Content
Search content using filters. Supports both GET (query parameters) and POST (request body) methods.Documentation Index
Fetch the complete documentation index at: https://docs.metabind.ai/llms.txt
Use this file to discover all available pages before exploring further.
GET Method
GET
Use query parameters for simple searches.
/app/v1/organizations//projects//content/searchPOST Method
POST
Use request body for advanced filtering with operators.
/app/v1/organizations//projects//content/searchPath Parameters
Organization ID
Project ID
Query Parameters (GET)
Filter by status:
draft, published, modified, deletedFilter by name (minimum 3 characters)
Filter by content type ID
Filter templates:
true or falseFilter by tag(s)
Filter by updated date (from)
Filter by updated date (to)
Natural language query for semantic search (1-500 characters)
Sort field and order (e.g.,
updatedAt:desc)Page number
Items per page (max 100)
Request Body (POST)
Filter conditions
Status filter with operators:
eq, neq, inName filter with operators:
eq, neq, likeContent type filter with operators:
eq, neq, inTemplate filter with operators:
eq, neqTags filter with operators:
eq, any, allUpdated date filter with operators:
lt, lte, gt, gteFilter by whether content has a published version:
eqSort configuration array
Pagination options with
page, limitNatural language query for semantic search
Example Request (POST)
Response
Filter Operators
| Operator | Description | Example |
|---|---|---|
eq | Equals | {"status": {"eq": "published"}} |
neq | Not equals | {"status": {"neq": "deleted"}} |
like | Contains (case-insensitive) | {"name": {"like": "guide"}} |
in | In array | {"typeId": {"in": ["ct1", "ct2"]}} |
any | Has any of tags | {"tags": {"any": ["featured"]}} |
all | Has all of tags | {"tags": {"all": ["featured", "guide"]}} |
lt | Less than | {"updatedAt": {"lt": "2024-03-22"}} |
lte | Less than or equal | {"updatedAt": {"lte": "2024-03-22"}} |
gt | Greater than | {"updatedAt": {"gt": "2024-03-20"}} |
gte | Greater than or equal | {"updatedAt": {"gte": "2024-03-20"}} |