Documentation Index
Fetch the complete documentation index at: https://docs.corsair.dev/llms.txt
Use this file to discover all available pages before exploring further.
The Oura plugin syncs data locally. Use corsair.oura.db.<entity>.search({ data, limit?, offset? }) with the filters listed per entity.
Daily Activity
Path: oura.db.dailyActivity.search
const rows = await corsair.oura.db.dailyActivity.search({
data: { /* filters below */ },
limit: 100,
offset: 0,
});
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 |
Every .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
const rows = await corsair.oura.db.dailyReadiness.search({
data: { /* filters below */ },
limit: 100,
offset: 0,
});
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 |
Every .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
const rows = await corsair.oura.db.dailySleep.search({
data: { /* filters below */ },
limit: 100,
offset: 0,
});
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 |
Every .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
const rows = await corsair.oura.db.personalInfo.search({
data: { /* filters below */ },
limit: 100,
offset: 0,
});
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 |
Every .search() also accepts limit and offset for pagination. .list() is available on the same path without the .search suffix in code — see database operations.