When you query a database, you can send a filter object in the body of the request that limits the returned entries based on the specified criteria.For example, the below query limits the response to entries where the "Task completed"checkbox property value is true:cURL
The type-specific filter condition for the query. Only types listed in the Field column of this table are supported. Refer to type-specific filter conditions for details on corresponding object values.
For the after, before, equals, on_or_before, and on_or_after fields, if a date string with a time is provided, then the comparison is done with millisecond precision.If no timezone is provided, then the timezone defaults to UTC.
A date filter condition can be used to limit date property value types and the timestamp property types created_time and last_edited_time.The condition contains the below fields:
The primary field of the formula filter condition object matches the type of the formula’s result. For example, to filter a formula property that computes a checkbox, use a formula filter condition object with a checkbox field containing a checkbox filter condition as its value.
Field
Type
Description
Example value
checkbox
object
A checkbox filter condition to compare the formula result against. Returns database entries where the formula result matches the provided condition.
The number to compare the number property value against. Returns database entries where the number property value differs from the provided number.
42
equals
number
The number to compare the number property value against. Returns database entries where the number property value is the same as the provided number.
42
greater_than
number
The number to compare the number property value against. Returns database entries where the number property value exceeds the provided number.
42
greater_than_or_equal_to
number
The number to compare the number property value against. Returns database entries where the number property value is equal to or exceeds the provided number.
42
is_empty
true
Whether the number property value is empty. Returns database entries where the number property value does not contain any data.
true
is_not_empty
true
Whether the number property value is not empty. Returns database entries where the number property value contains data.
true
less_than
number
The number to compare the number property value against. Returns database entries where the page property value is less than the provided number.
42
less_than_or_equal_to
number
The number to compare the number property value against. Returns database entries where the page property value is equal to or is less than the provided number.
42
Example number filter condition
{"filter":{"property":"Estimated working days","number":{"less_than_or_equal_to":5}}}
You can apply a people filter condition to people, created_by, and last_edited_by database property types.The people filter condition contains the following fields:
Field
Type
Description
Example value
contains
string (UUIDv4)
The value to compare the people property value against. Returns database entries where the people property value contains the provided string.
"6c574cee-ca68-41c8-86e0-1b9e992689fb"
does_not_contain
string (UUIDv4)
The value to compare the people property value against. Returns database entries where the people property value does not contain the provided string.
"6c574cee-ca68-41c8-86e0-1b9e992689fb"
is_empty
true
Whether the people property value does not contain any data. Returns database entries where the people property value does not contain any data.
true
is_not_empty
true
Whether the people property value contains data. Returns database entries where the people property value is not empty.
A rollup database property can evaluate to an array, date, or number value. The filter condition for the rollup property contains a rollup key and a corresponding object value that depends on the computed value type.
The value to compare each rollup property value against. Can be a filter condition for any other type. Returns database entries where the rollup property value matches the provided criteria.
"rich_text": { "contains": "Take Fig on a walk" }
every
object
The value to compare each rollup property value against. Can be a filter condition for any other type. Returns database entries where every rollup property value matches the provided criteria.
"rich_text": { "contains": "Take Fig on a walk" }
none
object
The value to compare each rollup property value against. Can be a filter condition for any other type. Returns database entries where no rollup property value matches the provided criteria.
A rollup value is stored as a date only if the "Earliest date", "Latest date", or "Date range" computation is selected for the property in the Notion UI.
Field
Type
Description
Example value
date
object
A date filter condition to compare the rollup value against. Returns database entries where the rollup value matches the provided condition.
You can use a compound filter condition to limit the results of a database query based on multiple conditions. This mimics filter chaining in the Notion UI.An example filter chain in the Notion UIThe above filters in the Notion UI are equivalent to the following compound filter condition via the API:JSON
A compound filter condition contains an and or or key with a value that is an array of filter objects or nested compound filter objects. Nesting is supported up to two levels deep.
Field
Type
Description
Example value
and
array
An array of filter objects or compound filter conditions. Returns database entries that match all of the provided filter conditions.
Refer to the examples below.
or
array
An array of filter objects or compound filter conditions. Returns database entries that match any of the provided filter conditions