List Content
Content
List Content
Retrieve a list of content items with filtering and sorting
GET
List Content
The Content API provides flexible search with both simple query parameters and advanced filtering through request bodies.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.
Path Parameters
Organization ID
Project ID
Query Parameters
Items per page
Cursor for pagination (from previous response)
Filter by ContentType ID
Filter by tags (comma-separated)
Filter by status:
draft, modified, published, unpublished, or deletedFull-text search term
Natural language query for semantic search
Filter by template status (
true or false)Filter by folder ID (use
null to get unfiled content)Response
Array of content objects
Pagination information
Example Response
Advanced Filtering (POST Method)
For complex queries, use the POST method with a JSON request body:Request Body
Filter Operators
| Operator | Description | Example |
|---|---|---|
eq | Equals | {"status": {"eq": "published"}} |
neq | Not equals | {"status": {"neq": "deleted"}} |
in | In array | {"typeId": {"in": ["article", "blog"]}} |
all | Contains all values (tags) | {"tags": {"all": ["featured", "news"]}} |
any | Contains any values (tags) | {"tags": {"any": ["tech", "ai"]}} |
gte | Greater than or equal (date) | {"updatedAt": {"gte": "2024-01-01"}} |
lte | Less than or equal (date) | {"updatedAt": {"lte": "2024-12-31"}} |
gt | Greater than (date) | {"updatedAt": {"gt": "2024-01-01"}} |
lt | Less than (date) | {"updatedAt": {"lt": "2024-12-31"}} |
like | Pattern matching (name) | {"name": {"like": "intro"}} |
Available Sort Fields
| Field | Description |
|---|---|
updatedAt | Sort by last modification date (only field supported) |
When no sort is specified, content is sorted by
updatedAt:desc by default.