Skip to content

Multiple Daily Readiness Documents

GET
/v2/usercollection/daily_readiness
curl --location --request GET 'https://api.ouraring.com/v2/usercollection/daily_readiness?start_date=2021-11-01&end_date=2021-12-01&fields=day,score' \
--header 'Authorization: Bearer <token>'
start_date
Start Date
string format: date
end_date
End Date
string format: date
next_token
Any of:
string
fields
Any of:
string

Comma-separated list of fields to include in the response, in addition to the always returned fields. Defaults to all fields if not provided.

Successful Response

Media typeapplication/json
MultiDocumentResponse[PublicDailyReadiness]
object
data
required
Data
Array<object>
PublicDailyReadiness

Public object defining daily readiness.

object
id
required

Unique identifier of the object.

string
>= 1 characters
contributors
required

Contributors of the daily readiness score.

object
activity_balance
Any of:
integer
body_temperature
Any of:
integer
hrv_balance
Any of:
integer
previous_day_activity
Any of:
integer
previous_night
Any of:
integer
recovery_index
Any of:
integer
resting_heart_rate
Any of:
integer
sleep_balance
Any of:
integer
sleep_regularity
Any of:
integer
day
required

Day that the daily readiness belongs to.

string
score
Any of:
integer
temperature_deviation
Any of:
number
temperature_trend_deviation
Any of:
number
timestamp
required

Timestamp of the daily readiness.

string
next_token
required
Any of:
string
Examplegenerated
{
"data": [
{
"id": "example",
"contributors": {
"activity_balance": 1,
"body_temperature": 1,
"hrv_balance": 1,
"previous_day_activity": 1,
"previous_night": 1,
"recovery_index": 1,
"resting_heart_rate": 1,
"sleep_balance": 1,
"sleep_regularity": 1
},
"day": "example",
"score": 1,
"temperature_deviation": 1,
"temperature_trend_deviation": 1,
"timestamp": "example"
}
],
"next_token": "example"
}

Client Exception

Unauthorized access exception. Usually means the access token is expired, malformed or revoked.

Access forbidden. Usually means the user’s subscription to Oura has expired and their data is not available via the API.

Validation Error

Media typeapplication/json
HTTPValidationError
object
detail
Detail
Array<object>
ValidationError
object
loc
required
Location
Array
msg
required
Message
string
type
required
Error Type
string
Examplegenerated
{
"detail": [
{
"loc": [
"example"
],
"msg": "example",
"type": "example"
}
]
}

Request Rate Limit Exceeded.