Filter documents by metadata values
Retrieve documents whose metadata contains one or more of the given values (case-insensitive, OR logic).
Document metadata is stored as a list of [key, value] pairs. This endpoint matches against the
value part of each pair. For example, if a document has metadata [["category", "Finance"]],
passing metadata_values: ["finance"] will match it.
Note: This endpoint requires documents to have metadata set. See the metadata management endpoints below to add metadata to documents.
Authorizations
Use Authorization: Bearer
Path Parameters
UUID of the project
Query Parameters
Maximum number of results per page
1 <= x <= 1000Number of results to skip for pagination
x >= 0Body
List of metadata values to filter by (OR logic, case-insensitive).