Count the number of documents in a collection that match a specified query. This endpoint is useful for pagination, analytics, and understanding the size of your dataset.
Authentication using either an API key or JWT token in the Authorization header
Optional transaction ID header that ensures consistency. If specified, the operation will only proceed if the Big Peer's transaction ID is equal to or greater than this value. This prevents reading stale data by ensuring you're operating on a sufficiently up-to-date version of the database.
Request parameters for counting documents in a collection. Use this to get the total number of documents matching specific criteria.
The name of the collection to count documents in
A query expression that filters which documents to count. Use parameterized values with :param syntax for better security and performance
Optional parameters to use in the parameterized query, providing safe value substitution
The count operation completed successfully. Returns the total number of matching documents and the transaction ID of the operation.
Response from a count operation, providing both the count and transaction ID for consistency tracking.