corsair.oura.db.<entity>.search({ data, limit?, offset? }) with the filters listed per entity.
New to Corsair? See database operations, data synchronization, and multi-tenancy.
Daily Activity
Path:oura.db.dailyActivity.search
Searchable filters
| Field | Type | Operators |
|---|---|---|
entity_id | string | equals, contains, startsWith, endsWith, in |
id | string | equals, contains, startsWith, endsWith, in |
day | string | equals, contains, startsWith, endsWith, in |
score | number | equals, gt, gte, lt, lte, in |
active_calories | number | equals, gt, gte, lt, lte, in |
steps | number | equals, gt, gte, lt, lte, in |
total_calories | number | equals, gt, gte, lt, lte, in |
high_activity_time | number | equals, gt, gte, lt, lte, in |
medium_activity_time | number | equals, gt, gte, lt, lte, in |
low_activity_time | number | equals, gt, gte, lt, lte, in |
sedentary_time | number | equals, gt, gte, lt, lte, in |
resting_time | number | equals, gt, gte, lt, lte, in |
timestamp | string | equals, contains, startsWith, endsWith, in |
.search() also accepts limit and offset for pagination. .list() is available on the same path without the .search suffix in code — see database operations.
Daily Readiness
Path:oura.db.dailyReadiness.search
Searchable filters
| Field | Type | Operators |
|---|---|---|
entity_id | string | equals, contains, startsWith, endsWith, in |
id | string | equals, contains, startsWith, endsWith, in |
day | string | equals, contains, startsWith, endsWith, in |
score | number | equals, gt, gte, lt, lte, in |
temperature_deviation | number | equals, gt, gte, lt, lte, in |
temperature_trend_deviation | number | equals, gt, gte, lt, lte, in |
timestamp | string | equals, contains, startsWith, endsWith, in |
.search() also accepts limit and offset for pagination. .list() is available on the same path without the .search suffix in code — see database operations.
Daily Sleep
Path:oura.db.dailySleep.search
Searchable filters
| Field | Type | Operators |
|---|---|---|
entity_id | string | equals, contains, startsWith, endsWith, in |
id | string | equals, contains, startsWith, endsWith, in |
day | string | equals, contains, startsWith, endsWith, in |
score | number | equals, gt, gte, lt, lte, in |
timestamp | string | equals, contains, startsWith, endsWith, in |
.search() also accepts limit and offset for pagination. .list() is available on the same path without the .search suffix in code — see database operations.
Personal Info
Path:oura.db.personalInfo.search
Searchable filters
| Field | Type | Operators |
|---|---|---|
entity_id | string | equals, contains, startsWith, endsWith, in |
id | string | equals, contains, startsWith, endsWith, in |
age | number | equals, gt, gte, lt, lte, in |
weight | number | equals, gt, gte, lt, lte, in |
height | number | equals, gt, gte, lt, lte, in |
biological_sex | string | equals, contains, startsWith, endsWith, in |
email | string | equals, contains, startsWith, endsWith, in |
.search() also accepts limit and offset for pagination. .list() is available on the same path without the .search suffix in code — see database operations.