Recent deliveries for an endpoint
curl --request GET \
--url https://api.originalis.ai/api/v1/webhooks/{webhook_id}/deliveries \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.originalis.ai/api/v1/webhooks/{webhook_id}/deliveries"
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/webhooks/{webhook_id}/deliveries', 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/{webhook_id}/deliveries",
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/webhooks/{webhook_id}/deliveries"
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/webhooks/{webhook_id}/deliveries")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.originalis.ai/api/v1/webhooks/{webhook_id}/deliveries")
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{
"webhook_id": "3a4b5c6d-7e8f-4a9b-8c0d-1e2f3a4b5c6d",
"deliveries": [
{
"delivery_id": "9c0d1e2f-3a4b-4c5d-8e6f-7a8b9c0d1e2f",
"event_type": "deal.analysis.completed",
"entity_id": "8a9b0c1d-2e3f-4a5b-9c6d-7e8f9a0b1c2d",
"status": "delivered",
"attempts": 1,
"response_status": 200,
"error": null,
"created_at": "2026-09-02T14:00:00Z",
"delivered_at": "2026-09-02T14:00:00Z"
},
{
"delivery_id": "5d6e7f8a-9b0c-4d1e-8f2a-3b4c5d6e7f8a",
"event_type": "research.completed",
"entity_id": "7f8a9b0c-1d2e-4f3a-8b4c-5d6e7f8a9b0c",
"status": "failed",
"attempts": 6,
"response_status": 503,
"error": "HTTP 503",
"created_at": "2026-09-02T14:00:00Z",
"delivered_at": null
}
],
"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": "Webhook 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."
}public-webhooks-v1
Recent deliveries for an endpoint
The delivery ledger — the debugging view for a misbehaving receiver.
Shows the last 50 deliveries with status, attempt count, and the receiver’s last response code.
GET
/
api
/
v1
/
webhooks
/
{webhook_id}
/
deliveries
Recent deliveries for an endpoint
curl --request GET \
--url https://api.originalis.ai/api/v1/webhooks/{webhook_id}/deliveries \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.originalis.ai/api/v1/webhooks/{webhook_id}/deliveries"
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/webhooks/{webhook_id}/deliveries', 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/{webhook_id}/deliveries",
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/webhooks/{webhook_id}/deliveries"
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/webhooks/{webhook_id}/deliveries")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.originalis.ai/api/v1/webhooks/{webhook_id}/deliveries")
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{
"webhook_id": "3a4b5c6d-7e8f-4a9b-8c0d-1e2f3a4b5c6d",
"deliveries": [
{
"delivery_id": "9c0d1e2f-3a4b-4c5d-8e6f-7a8b9c0d1e2f",
"event_type": "deal.analysis.completed",
"entity_id": "8a9b0c1d-2e3f-4a5b-9c6d-7e8f9a0b1c2d",
"status": "delivered",
"attempts": 1,
"response_status": 200,
"error": null,
"created_at": "2026-09-02T14:00:00Z",
"delivered_at": "2026-09-02T14:00:00Z"
},
{
"delivery_id": "5d6e7f8a-9b0c-4d1e-8f2a-3b4c5d6e7f8a",
"event_type": "research.completed",
"entity_id": "7f8a9b0c-1d2e-4f3a-8b4c-5d6e7f8a9b0c",
"status": "failed",
"attempts": 6,
"response_status": 503,
"error": "HTTP 503",
"created_at": "2026-09-02T14:00:00Z",
"delivered_at": null
}
],
"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": "Webhook 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
ApiKeyBearerApiKeyHeader
An Originalis API key: Authorization: Bearer ak_...