curl --request POST \
--url https://api.originalis.ai/api/v1/research \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"query": "Map the warehouse-automation competitive landscape and market sizing for mid-market 3PLs.",
"idempotency_key": "warehouse-automation-landscape-2026-09"
}
'import requests
url = "https://api.originalis.ai/api/v1/research"
payload = {
"query": "Map the warehouse-automation competitive landscape and market sizing for mid-market 3PLs.",
"idempotency_key": "warehouse-automation-landscape-2026-09"
}
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({
query: 'Map the warehouse-automation competitive landscape and market sizing for mid-market 3PLs.',
idempotency_key: 'warehouse-automation-landscape-2026-09'
})
};
fetch('https://api.originalis.ai/api/v1/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://api.originalis.ai/api/v1/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' => 'Map the warehouse-automation competitive landscape and market sizing for mid-market 3PLs.',
'idempotency_key' => 'warehouse-automation-landscape-2026-09'
]),
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.originalis.ai/api/v1/research"
payload := strings.NewReader("{\n \"query\": \"Map the warehouse-automation competitive landscape and market sizing for mid-market 3PLs.\",\n \"idempotency_key\": \"warehouse-automation-landscape-2026-09\"\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.originalis.ai/api/v1/research")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"query\": \"Map the warehouse-automation competitive landscape and market sizing for mid-market 3PLs.\",\n \"idempotency_key\": \"warehouse-automation-landscape-2026-09\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.originalis.ai/api/v1/research")
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 \"query\": \"Map the warehouse-automation competitive landscape and market sizing for mid-market 3PLs.\",\n \"idempotency_key\": \"warehouse-automation-landscape-2026-09\"\n}"
response = http.request(request)
puts response.read_body{
"research_id": "7f8a9b0c-1d2e-4f3a-8b4c-5d6e7f8a9b0c",
"status": "queued",
"status_url": "/api/v1/research/7f8a9b0c-1d2e-4f3a-8b4c-5d6e7f8a9b0c",
"result_url": "/api/v1/research/7f8a9b0c-1d2e-4f3a-8b4c-5d6e7f8a9b0c",
"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": "This idempotency_key was already used in a different workspace. Use a new key."
}{
"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."
}Run deep research
Submit a research question; a deep-research run executes async.
The plan is generated and approved server-side in this call (a few
seconds), then the run itself takes minutes — up to 30. Poll
status_url with generous backoff. Retrying with the same
idempotency_key recovers the same run; it never starts or bills a
second one.
curl --request POST \
--url https://api.originalis.ai/api/v1/research \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"query": "Map the warehouse-automation competitive landscape and market sizing for mid-market 3PLs.",
"idempotency_key": "warehouse-automation-landscape-2026-09"
}
'import requests
url = "https://api.originalis.ai/api/v1/research"
payload = {
"query": "Map the warehouse-automation competitive landscape and market sizing for mid-market 3PLs.",
"idempotency_key": "warehouse-automation-landscape-2026-09"
}
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({
query: 'Map the warehouse-automation competitive landscape and market sizing for mid-market 3PLs.',
idempotency_key: 'warehouse-automation-landscape-2026-09'
})
};
fetch('https://api.originalis.ai/api/v1/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://api.originalis.ai/api/v1/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' => 'Map the warehouse-automation competitive landscape and market sizing for mid-market 3PLs.',
'idempotency_key' => 'warehouse-automation-landscape-2026-09'
]),
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.originalis.ai/api/v1/research"
payload := strings.NewReader("{\n \"query\": \"Map the warehouse-automation competitive landscape and market sizing for mid-market 3PLs.\",\n \"idempotency_key\": \"warehouse-automation-landscape-2026-09\"\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.originalis.ai/api/v1/research")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"query\": \"Map the warehouse-automation competitive landscape and market sizing for mid-market 3PLs.\",\n \"idempotency_key\": \"warehouse-automation-landscape-2026-09\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.originalis.ai/api/v1/research")
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 \"query\": \"Map the warehouse-automation competitive landscape and market sizing for mid-market 3PLs.\",\n \"idempotency_key\": \"warehouse-automation-landscape-2026-09\"\n}"
response = http.request(request)
puts response.read_body{
"research_id": "7f8a9b0c-1d2e-4f3a-8b4c-5d6e7f8a9b0c",
"status": "queued",
"status_url": "/api/v1/research/7f8a9b0c-1d2e-4f3a-8b4c-5d6e7f8a9b0c",
"result_url": "/api/v1/research/7f8a9b0c-1d2e-4f3a-8b4c-5d6e7f8a9b0c",
"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": "This idempotency_key was already used in a different workspace. Use a new key."
}{
"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_...
Body
Submit a research question for a deep-research run.
The research question, e.g. 'Map the warehouse-automation competitive landscape and sizing for mid-market 3PLs.'
1 - 20000Required. Reuse the same key to safely retry — you get the same run back, never a second spend. Use a fresh key for a genuinely new question.
1 - 512Response
Successful Response
Accepted research submission (HTTP 202).
queued, running, succeeded, failed Poll GET here until status is 'succeeded' or 'failed'. Runs take minutes (up to 30) — poll with generous backoff.