POST
/
aggregate
/
v1
/
user
/
{user_id}
/
query
curl --request POST \
  --url https://api.tryvital.io/aggregate/v1/user/{user_id}/query \
  --header 'Content-Type: application/json' \
  --header 'x-vital-api-key: <api-key>' \
  --data '{
  "timeframe": {
    "type": "relative",
    "anchor": "2023-12-25",
    "past": {
      "value": 2,
      "unit": "minute"
    }
  },
  "queries": [
    {
      "select": [
        {
          "arg": {
            "sleep": "session_start"
          },
          "func": "mean"
        }
      ],
      "group_by": [
        {
          "date_trunc": {
            "value": 2,
            "unit": "minute"
          },
          "arg": {
            "index": "sleep"
          }
        }
      ],
      "split_by_source": false
    }
  ],
  "config": {
    "provider_priority_overrides": [
      "oura"
    ]
  }
}'
{
  "results": [
    {
      "table": {}
    }
  ]
}

Query API is currently in closed beta. The query schema and the behaviour is subject to change based on beta feedback.

Authorizations

x-vital-api-key
string
header
required

Vital Team API Key

Headers

accept
enum<string>
default:*/*
Available options:
*/*,
application/json,
application/vnd.vital.tar+gzip+parquet

Path Parameters

user_id
string
required

Body

application/json
timeframe
object
required
queries
object[]
required
config
object

Response

200
application/json
Successful Response
results
object[]
required