Create chat completion
curl --request POST \
--url https://api.onvy.health/users/{user_id}/chat/completions \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"messages": [
{
"content": "<string>"
}
],
"model": "<string>",
"temperature": 1,
"max_tokens": 2,
"stream": true,
"top_p": 0.5,
"frequency_penalty": 0,
"presence_penalty": 0,
"exclude_context": []
}
'import requests
url = "https://api.onvy.health/users/{user_id}/chat/completions"
payload = {
"messages": [{ "content": "<string>" }],
"model": "<string>",
"temperature": 1,
"max_tokens": 2,
"stream": True,
"top_p": 0.5,
"frequency_penalty": 0,
"presence_penalty": 0,
"exclude_context": []
}
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({
messages: [{content: '<string>'}],
model: '<string>',
temperature: 1,
max_tokens: 2,
stream: true,
top_p: 0.5,
frequency_penalty: 0,
presence_penalty: 0,
exclude_context: []
})
};
fetch('https://api.onvy.health/users/{user_id}/chat/completions', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.onvy.health/users/{user_id}/chat/completions",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'messages' => [
[
'content' => '<string>'
]
],
'model' => '<string>',
'temperature' => 1,
'max_tokens' => 2,
'stream' => true,
'top_p' => 0.5,
'frequency_penalty' => 0,
'presence_penalty' => 0,
'exclude_context' => [
]
]),
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>",
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.onvy.health/users/{user_id}/chat/completions"
payload := strings.NewReader("{\n \"messages\": [\n {\n \"content\": \"<string>\"\n }\n ],\n \"model\": \"<string>\",\n \"temperature\": 1,\n \"max_tokens\": 2,\n \"stream\": true,\n \"top_p\": 0.5,\n \"frequency_penalty\": 0,\n \"presence_penalty\": 0,\n \"exclude_context\": []\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Authorization", "Bearer <token>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://api.onvy.health/users/{user_id}/chat/completions")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"messages\": [\n {\n \"content\": \"<string>\"\n }\n ],\n \"model\": \"<string>\",\n \"temperature\": 1,\n \"max_tokens\": 2,\n \"stream\": true,\n \"top_p\": 0.5,\n \"frequency_penalty\": 0,\n \"presence_penalty\": 0,\n \"exclude_context\": []\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.onvy.health/users/{user_id}/chat/completions")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Authorization"] = 'Bearer <token>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"messages\": [\n {\n \"content\": \"<string>\"\n }\n ],\n \"model\": \"<string>\",\n \"temperature\": 1,\n \"max_tokens\": 2,\n \"stream\": true,\n \"top_p\": 0.5,\n \"frequency_penalty\": 0,\n \"presence_penalty\": 0,\n \"exclude_context\": []\n}"
response = http.request(request)
puts response.read_body{
"id": "<string>",
"object": "<string>",
"created": 123,
"model": "<string>",
"choices": [
{
"index": 123,
"message": {
"role": "<string>",
"content": "<string>"
},
"finish_reason": "stop"
}
],
"usage": {
"prompt_tokens": 123,
"completion_tokens": 123,
"total_tokens": 123
}
}{
"error": "<string>"
}{
"error": "<string>"
}chat
Create chat completion
OpenAI-compatible chat completion endpoint with user context
POST
/
users
/
{user_id}
/
chat
/
completions
Create chat completion
curl --request POST \
--url https://api.onvy.health/users/{user_id}/chat/completions \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"messages": [
{
"content": "<string>"
}
],
"model": "<string>",
"temperature": 1,
"max_tokens": 2,
"stream": true,
"top_p": 0.5,
"frequency_penalty": 0,
"presence_penalty": 0,
"exclude_context": []
}
'import requests
url = "https://api.onvy.health/users/{user_id}/chat/completions"
payload = {
"messages": [{ "content": "<string>" }],
"model": "<string>",
"temperature": 1,
"max_tokens": 2,
"stream": True,
"top_p": 0.5,
"frequency_penalty": 0,
"presence_penalty": 0,
"exclude_context": []
}
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({
messages: [{content: '<string>'}],
model: '<string>',
temperature: 1,
max_tokens: 2,
stream: true,
top_p: 0.5,
frequency_penalty: 0,
presence_penalty: 0,
exclude_context: []
})
};
fetch('https://api.onvy.health/users/{user_id}/chat/completions', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.onvy.health/users/{user_id}/chat/completions",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'messages' => [
[
'content' => '<string>'
]
],
'model' => '<string>',
'temperature' => 1,
'max_tokens' => 2,
'stream' => true,
'top_p' => 0.5,
'frequency_penalty' => 0,
'presence_penalty' => 0,
'exclude_context' => [
]
]),
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>",
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.onvy.health/users/{user_id}/chat/completions"
payload := strings.NewReader("{\n \"messages\": [\n {\n \"content\": \"<string>\"\n }\n ],\n \"model\": \"<string>\",\n \"temperature\": 1,\n \"max_tokens\": 2,\n \"stream\": true,\n \"top_p\": 0.5,\n \"frequency_penalty\": 0,\n \"presence_penalty\": 0,\n \"exclude_context\": []\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Authorization", "Bearer <token>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://api.onvy.health/users/{user_id}/chat/completions")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"messages\": [\n {\n \"content\": \"<string>\"\n }\n ],\n \"model\": \"<string>\",\n \"temperature\": 1,\n \"max_tokens\": 2,\n \"stream\": true,\n \"top_p\": 0.5,\n \"frequency_penalty\": 0,\n \"presence_penalty\": 0,\n \"exclude_context\": []\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.onvy.health/users/{user_id}/chat/completions")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Authorization"] = 'Bearer <token>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"messages\": [\n {\n \"content\": \"<string>\"\n }\n ],\n \"model\": \"<string>\",\n \"temperature\": 1,\n \"max_tokens\": 2,\n \"stream\": true,\n \"top_p\": 0.5,\n \"frequency_penalty\": 0,\n \"presence_penalty\": 0,\n \"exclude_context\": []\n}"
response = http.request(request)
puts response.read_body{
"id": "<string>",
"object": "<string>",
"created": 123,
"model": "<string>",
"choices": [
{
"index": 123,
"message": {
"role": "<string>",
"content": "<string>"
},
"finish_reason": "stop"
}
],
"usage": {
"prompt_tokens": 123,
"completion_tokens": 123,
"total_tokens": 123
}
}{
"error": "<string>"
}{
"error": "<string>"
}Authorizations
OAuth bearer token for Health API authentication
Path Parameters
User ID (e.g., google_104940819145861640201)
Body
application/json
Chat completion request
Show child attributes
Show child attributes
Model to use for completion
Required range:
0 <= x <= 2Required range:
x >= 1Whether to stream the response
Required range:
0 <= x <= 1Required range:
-2 <= x <= 2Required range:
-2 <= x <= 2Context sections to omit from automatic enrichment:
- all: skip all enrichment (system prompt + knowledge); keep messages unchanged
- knowledge: skip retrieval of knowledge base context and links
- scores: omit recent score summaries from the system prompt
- workouts: omit recent workout/activity summaries
- baselines: omit baseline medians/ranges from the system prompt
- facts: omit long-term personal facts/profile information
- notes: omit helper notes explaining metrics and data columns
- language: omit user language; fall back to default
Available options:
all, knowledge, scores, workouts, baselines, facts, notes, language Was this page helpful?