curl --request GET \
--url https://api.originalis.ai/api/v1/research/{research_id} \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.originalis.ai/api/v1/research/{research_id}"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.originalis.ai/api/v1/research/{research_id}', 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.originalis.ai/api/v1/research/{research_id}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.originalis.ai/api/v1/research/{research_id}"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "Bearer <token>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.originalis.ai/api/v1/research/{research_id}")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.originalis.ai/api/v1/research/{research_id}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'
response = http.request(request)
puts response.read_body{
"research_id": "7f8a9b0c-1d2e-4f3a-8b4c-5d6e7f8a9b0c",
"status": "succeeded",
"summary": "Mid-market warehouse automation is consolidating around three integration patterns; pricing power sits with the software layer.",
"content": "# Warehouse Automation for Mid-Market 3PLs\n\n> **Thesis**: The software orchestration layer captures the margin.\n\n## Market structure\n\nThe mid-market segment…[E3]\n\n## References\n\n[E3] Logistics Automation Review…",
"citations": [
{
"url": "https://research.example/warehouse-automation-2026",
"title": "Logistics Automation Review 2026"
}
],
"created_at": "2026-09-07T14:05:00Z",
"completed_at": "2026-09-07T14:19:00Z",
"as_of": "2026-09-02T14:00:00Z"
}{
"detail": "Invalid or revoked API key."
}{
"detail": "This API key's user does not belong to an organization. Ask your firm admin to add the user to your Originalis org."
}{
"detail": "Research not found"
}{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>"
}
]
}{
"detail": "Daily request limit reached (5,000 requests per key). The limit resets at UTC midnight."
}{
"detail": "API key verification is temporarily unavailable. Retry shortly."
}Research status and report
One research run: lifecycle plus the finished report.
On succeeded the response carries the full Markdown report and its
citations (?view=summary withholds both and keeps the response
small). failed is terminal — resubmit with a new idempotency_key,
or contact support with your X-Request-Id.
curl --request GET \
--url https://api.originalis.ai/api/v1/research/{research_id} \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.originalis.ai/api/v1/research/{research_id}"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.originalis.ai/api/v1/research/{research_id}', 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.originalis.ai/api/v1/research/{research_id}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.originalis.ai/api/v1/research/{research_id}"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "Bearer <token>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.originalis.ai/api/v1/research/{research_id}")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.originalis.ai/api/v1/research/{research_id}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'
response = http.request(request)
puts response.read_body{
"research_id": "7f8a9b0c-1d2e-4f3a-8b4c-5d6e7f8a9b0c",
"status": "succeeded",
"summary": "Mid-market warehouse automation is consolidating around three integration patterns; pricing power sits with the software layer.",
"content": "# Warehouse Automation for Mid-Market 3PLs\n\n> **Thesis**: The software orchestration layer captures the margin.\n\n## Market structure\n\nThe mid-market segment…[E3]\n\n## References\n\n[E3] Logistics Automation Review…",
"citations": [
{
"url": "https://research.example/warehouse-automation-2026",
"title": "Logistics Automation Review 2026"
}
],
"created_at": "2026-09-07T14:05:00Z",
"completed_at": "2026-09-07T14:19:00Z",
"as_of": "2026-09-02T14:00:00Z"
}{
"detail": "Invalid or revoked API key."
}{
"detail": "This API key's user does not belong to an organization. Ask your firm admin to add the user to your Originalis org."
}{
"detail": "Research not found"
}{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>"
}
]
}{
"detail": "Daily request limit reached (5,000 requests per key). The limit resets at UTC midnight."
}{
"detail": "API key verification is temporarily unavailable. Retry shortly."
}Authorizations
An Originalis API key: Authorization: Bearer ak_...
Path Parameters
Query Parameters
'full' (default) returns the whole Markdown report and its citations; 'summary' returns lifecycle + executive summary only — useful for status dashboards that don't want the multi-hundred-KB report body on every poll.
summary, full Response
Successful Response
One research run: lifecycle plus the report when finished.
queued, running, succeeded, failed Live stage + percent while the run executes; null after.
Show child attributes
Show child attributes
The full report as Markdown; null until succeeded.
Show child attributes
Show child attributes