Get Delivery
curl --request GET \
--url https://app.opencomputer.dev/api/webhooks/{id}/deliveries/{deliveryId} \
--header 'X-API-Key: <api-key>'import requests
url = "https://app.opencomputer.dev/api/webhooks/{id}/deliveries/{deliveryId}"
headers = {"X-API-Key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'X-API-Key': '<api-key>'}};
fetch('https://app.opencomputer.dev/api/webhooks/{id}/deliveries/{deliveryId}', 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://app.opencomputer.dev/api/webhooks/{id}/deliveries/{deliveryId}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"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"
"net/http"
"io"
)
func main() {
url := "https://app.opencomputer.dev/api/webhooks/{id}/deliveries/{deliveryId}"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("X-API-Key", "<api-key>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://app.opencomputer.dev/api/webhooks/{id}/deliveries/{deliveryId}")
.header("X-API-Key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://app.opencomputer.dev/api/webhooks/{id}/deliveries/{deliveryId}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["X-API-Key"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"id": "msg_2aB…",
"eventType": "sandbox.stopped",
"eventId": "sb-3f9a…:sandbox.stopped",
"payload": {
"type": "sandbox.stopped",
"sandboxId": "sb-3f9a…",
"eventId": "sb-3f9a…:sandbox.stopped",
"event": { "id": "sb-3f9a…:sandbox.stopped", "ts": "2026-06-24T12:00:00Z", "orgId": "org_…", "sandboxId": "sb-3f9a…", "type": "sandbox.stopped", "data": { "reason": "user_requested" } }
},
"timestamp": "2026-06-24T12:00:00Z"
}
Deliveries
Get Delivery
GET
/
api
/
webhooks
/
{id}
/
deliveries
/
{deliveryId}
Get Delivery
curl --request GET \
--url https://app.opencomputer.dev/api/webhooks/{id}/deliveries/{deliveryId} \
--header 'X-API-Key: <api-key>'import requests
url = "https://app.opencomputer.dev/api/webhooks/{id}/deliveries/{deliveryId}"
headers = {"X-API-Key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'X-API-Key': '<api-key>'}};
fetch('https://app.opencomputer.dev/api/webhooks/{id}/deliveries/{deliveryId}', 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://app.opencomputer.dev/api/webhooks/{id}/deliveries/{deliveryId}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"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"
"net/http"
"io"
)
func main() {
url := "https://app.opencomputer.dev/api/webhooks/{id}/deliveries/{deliveryId}"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("X-API-Key", "<api-key>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://app.opencomputer.dev/api/webhooks/{id}/deliveries/{deliveryId}")
.header("X-API-Key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://app.opencomputer.dev/api/webhooks/{id}/deliveries/{deliveryId}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["X-API-Key"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"id": "msg_2aB…",
"eventType": "sandbox.stopped",
"eventId": "sb-3f9a…:sandbox.stopped",
"payload": {
"type": "sandbox.stopped",
"sandboxId": "sb-3f9a…",
"eventId": "sb-3f9a…:sandbox.stopped",
"event": { "id": "sb-3f9a…:sandbox.stopped", "ts": "2026-06-24T12:00:00Z", "orgId": "org_…", "sandboxId": "sb-3f9a…", "type": "sandbox.stopped", "data": { "reason": "user_requested" } }
},
"timestamp": "2026-06-24T12:00:00Z"
}
Fetch one delivered message by id. See Webhooks.
The delivery provider’s attempt index and message store are eventually consistent: a message id can
appear in list deliveries before this endpoint (and
redeliver) can resolve it — observed up to ~30s+ after the
attempt. So a
404 shortly after a delivery is transient — retry with backoff rather than
treating it as final.string
required
Destination ID (
whk_…).string
required
Message id (
msg_…, the id from list deliveries; equals the svix-id header).{
"id": "msg_2aB…",
"eventType": "sandbox.stopped",
"eventId": "sb-3f9a…:sandbox.stopped",
"payload": {
"type": "sandbox.stopped",
"sandboxId": "sb-3f9a…",
"eventId": "sb-3f9a…:sandbox.stopped",
"event": { "id": "sb-3f9a…:sandbox.stopped", "ts": "2026-06-24T12:00:00Z", "orgId": "org_…", "sandboxId": "sb-3f9a…", "type": "sandbox.stopped", "data": { "reason": "user_requested" } }
},
"timestamp": "2026-06-24T12:00:00Z"
}
⌘I