Returns in-depth answers with extensive citations for a variety of questions
curl --request POST \
--url https://chat-api.you.com/research \
--header 'Content-Type: application/json' \
--header 'X-API-Key: <api-key>' \
--data '
{
"query": "<string>",
"chat_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
}
'import requests
url = "https://chat-api.you.com/research"
payload = {
"query": "<string>",
"chat_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
}
headers = {
"X-API-Key": "<api-key>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {'X-API-Key': '<api-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({query: '<string>', chat_id: '3c90c3cc-0d44-4b50-8888-8dd25736052a'})
};
fetch('https://chat-api.you.com/research', 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://chat-api.you.com/research",
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([
'query' => '<string>',
'chat_id' => '3c90c3cc-0d44-4b50-8888-8dd25736052a'
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json",
"X-API-Key: <api-key>"
],
]);
$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://chat-api.you.com/research"
payload := strings.NewReader("{\n \"query\": \"<string>\",\n \"chat_id\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\"\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("X-API-Key", "<api-key>")
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://chat-api.you.com/research")
.header("X-API-Key", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"query\": \"<string>\",\n \"chat_id\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://chat-api.you.com/research")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["X-API-Key"] = '<api-key>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"query\": \"<string>\",\n \"chat_id\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\"\n}"
response = http.request(request)
puts response.read_body{
"answer": "# The Impact of AI on Productivity\n\nArtificial Intelligence (AI) is increasingly becoming a pivotal force in enhancing productivity across various sectors. ",
"search_results": [
{
"url": "https://www.goldmansachs.com/insights/articles/AI-is-showing-very-positive-signs-of-boosting-gdp#:~:text=concerns%20about%20privacy%20and,of%20the%20technology%20as",
"name": "AI is showing very positive signs of eventually boosting GDP and productivity",
"snippet": "2024-05-13 | the net impact on the labor market has been positive thus far..."
}
]
}API Reference
Research API (Legacy)
POST
/
research
Returns in-depth answers with extensive citations for a variety of questions
curl --request POST \
--url https://chat-api.you.com/research \
--header 'Content-Type: application/json' \
--header 'X-API-Key: <api-key>' \
--data '
{
"query": "<string>",
"chat_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
}
'import requests
url = "https://chat-api.you.com/research"
payload = {
"query": "<string>",
"chat_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
}
headers = {
"X-API-Key": "<api-key>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {'X-API-Key': '<api-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({query: '<string>', chat_id: '3c90c3cc-0d44-4b50-8888-8dd25736052a'})
};
fetch('https://chat-api.you.com/research', 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://chat-api.you.com/research",
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([
'query' => '<string>',
'chat_id' => '3c90c3cc-0d44-4b50-8888-8dd25736052a'
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json",
"X-API-Key: <api-key>"
],
]);
$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://chat-api.you.com/research"
payload := strings.NewReader("{\n \"query\": \"<string>\",\n \"chat_id\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\"\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("X-API-Key", "<api-key>")
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://chat-api.you.com/research")
.header("X-API-Key", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"query\": \"<string>\",\n \"chat_id\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://chat-api.you.com/research")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["X-API-Key"] = '<api-key>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"query\": \"<string>\",\n \"chat_id\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\"\n}"
response = http.request(request)
puts response.read_body{
"answer": "# The Impact of AI on Productivity\n\nArtificial Intelligence (AI) is increasingly becoming a pivotal force in enhancing productivity across various sectors. ",
"search_results": [
{
"url": "https://www.goldmansachs.com/insights/articles/AI-is-showing-very-positive-signs-of-boosting-gdp#:~:text=concerns%20about%20privacy%20and,of%20the%20technology%20as",
"name": "AI is showing very positive signs of eventually boosting GDP and productivity",
"snippet": "2024-05-13 | the net impact on the labor market has been positive thus far..."
}
]
}Before You Get StartedTo register for usage of our Research API, please reach out via email at api@you.com.
Authorizations
A unique API Key required to authorize API access. Ensure it is kept confidential. Get a free API Key at you.com/platform.
Body
application/json
Response
200 - application/json
A JSON object containing a dictionary with the answer and a list of search results
The main response generated by the API based on the provided query and instructions.
Example:
"# The Impact of AI on Productivity\n\nArtificial Intelligence (AI) is increasingly becoming a pivotal force in enhancing productivity across various sectors. "
Show child attributes
Show child attributes