Register a webhook endpoint
curl --request POST \
--url https://api.originalis.ai/api/v1/webhooks \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"url": "https://ops.examplefund.com/hooks/originalis",
"description": "Airflow ingestion trigger"
}
'import requests
url = "https://api.originalis.ai/api/v1/webhooks"
payload = {
"url": "https://ops.examplefund.com/hooks/originalis",
"description": "Airflow ingestion trigger"
}
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({
url: 'https://ops.examplefund.com/hooks/originalis',
description: 'Airflow ingestion trigger'
})
};
fetch('https://api.originalis.ai/api/v1/webhooks', 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/webhooks",
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([
'url' => 'https://ops.examplefund.com/hooks/originalis',
'description' => 'Airflow ingestion trigger'
]),
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/webhooks"
payload := strings.NewReader("{\n \"url\": \"https://ops.examplefund.com/hooks/originalis\",\n \"description\": \"Airflow ingestion trigger\"\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/webhooks")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"url\": \"https://ops.examplefund.com/hooks/originalis\",\n \"description\": \"Airflow ingestion trigger\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.originalis.ai/api/v1/webhooks")
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 \"url\": \"https://ops.examplefund.com/hooks/originalis\",\n \"description\": \"Airflow ingestion trigger\"\n}"
response = http.request(request)
puts response.read_body{
"webhook_id": "3a4b5c6d-7e8f-4a9b-8c0d-1e2f3a4b5c6d",
"url": "https://ops.examplefund.com/hooks/originalis",
"description": "Airflow ingestion trigger",
"secret": "whsec_wprxGVtdi9y0aP9YBk4mCJcMFyLkAsxr",
"events": [
"deal.analysis.completed",
"deal.analysis.failed",
"founder.analysis.completed",
"founder.analysis.failed",
"research.completed",
"research.failed"
],
"created_at": "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 URL is already registered for your org."
}{
"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."
}public-webhooks-v1
Register a webhook endpoint
Register an HTTPS endpoint to receive signed terminal events.
The response carries the signing secret ONCE — store it immediately.
Deliveries follow the Standard Webhooks conventions (webhook-id,
webhook-timestamp, webhook-signature headers; HMAC-SHA256 over
id.timestamp.payload), so off-the-shelf verifier libraries work.
POST
/
api
/
v1
/
webhooks
Register a webhook endpoint
curl --request POST \
--url https://api.originalis.ai/api/v1/webhooks \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"url": "https://ops.examplefund.com/hooks/originalis",
"description": "Airflow ingestion trigger"
}
'import requests
url = "https://api.originalis.ai/api/v1/webhooks"
payload = {
"url": "https://ops.examplefund.com/hooks/originalis",
"description": "Airflow ingestion trigger"
}
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({
url: 'https://ops.examplefund.com/hooks/originalis',
description: 'Airflow ingestion trigger'
})
};
fetch('https://api.originalis.ai/api/v1/webhooks', 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/webhooks",
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([
'url' => 'https://ops.examplefund.com/hooks/originalis',
'description' => 'Airflow ingestion trigger'
]),
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/webhooks"
payload := strings.NewReader("{\n \"url\": \"https://ops.examplefund.com/hooks/originalis\",\n \"description\": \"Airflow ingestion trigger\"\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/webhooks")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"url\": \"https://ops.examplefund.com/hooks/originalis\",\n \"description\": \"Airflow ingestion trigger\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.originalis.ai/api/v1/webhooks")
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 \"url\": \"https://ops.examplefund.com/hooks/originalis\",\n \"description\": \"Airflow ingestion trigger\"\n}"
response = http.request(request)
puts response.read_body{
"webhook_id": "3a4b5c6d-7e8f-4a9b-8c0d-1e2f3a4b5c6d",
"url": "https://ops.examplefund.com/hooks/originalis",
"description": "Airflow ingestion trigger",
"secret": "whsec_wprxGVtdi9y0aP9YBk4mCJcMFyLkAsxr",
"events": [
"deal.analysis.completed",
"deal.analysis.failed",
"founder.analysis.completed",
"founder.analysis.failed",
"research.completed",
"research.failed"
],
"created_at": "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 URL is already registered for your org."
}{
"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
ApiKeyBearerApiKeyHeader
An Originalis API key: Authorization: Bearer ak_...
Body
application/json
Response
Successful Response
The ONLY response that ever carries the signing secret.
whsec_-prefixed signing secret — shown ONCE, store it now. Verify deliveries per the Standard Webhooks scheme.
Event types this endpoint will receive (all of them).