Get delivery
curl --request GET \
--url https://qa-api.endl.xyz/api/v0/webhooks/events/{id} \
--header 'API-KEY: <api-key>'import requests
url = "https://qa-api.endl.xyz/api/v0/webhooks/events/{id}"
headers = {"API-KEY": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'API-KEY': '<api-key>'}};
fetch('https://qa-api.endl.xyz/api/v0/webhooks/events/{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://qa-api.endl.xyz/api/v0/webhooks/events/{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 => [
"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://qa-api.endl.xyz/api/v0/webhooks/events/{id}"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("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://qa-api.endl.xyz/api/v0/webhooks/events/{id}")
.header("API-KEY", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://qa-api.endl.xyz/api/v0/webhooks/events/{id}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["API-KEY"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"code": 200,
"message": "Success",
"status": "SUCCESS",
"data": {
"id": "4d2f6a11-8c73-4b90-9e21-5f0a2c8d1e44",
"eventId": "evt_9f1a4c7b2e08",
"eventType": "payout.completed",
"subscriptionId": "2b1e8f40-3c9a-4d21-9f7e-6a1c0b5d2e34",
"status": "FAILED",
"attemptCount": 5,
"attemptBudget": 5,
"lastStatusCode": 500,
"lastErrorClass": "HTTP_5XX",
"lastError": "HTTP 500",
"lastLatencyMs": 231,
"requestTimestamp": "2026-09-02T12:34:56.789Z",
"requestSignature": "a3f9c1e8b2…",
"requestPayload": {
"eventId": "evt_9f1a4c7b2e08",
"eventType": "payout.completed",
"eventCreatedAt": "2026-09-02T12:34:55.001Z",
"version": "1.0",
"data": {
"referenceId": "c2608cc2-084b-41d1-8be2-c4f3abd55e5a",
"referenceType": "TRANSACTION",
"amount": "1500.00"
}
},
"responseBody": "Internal Server Error",
"responseTruncated": false,
"attempts": [
{
"attemptNo": 1,
"statusCode": 500,
"errorClass": "HTTP_5XX",
"latencyMs": 240,
"at": "2026-09-02T12:35:00.000Z"
}
],
"expiresAt": "2026-09-03T12:34:56.789Z",
"createdOn": "2026-09-02T12:34:56.789Z"
},
"errors": []
}Returns one delivery in full — every attempt, the exact request payload and signature sent, and the response received back.
GET
/
api
/
v0
/
webhooks
/
events
/
{id}
Get delivery
curl --request GET \
--url https://qa-api.endl.xyz/api/v0/webhooks/events/{id} \
--header 'API-KEY: <api-key>'import requests
url = "https://qa-api.endl.xyz/api/v0/webhooks/events/{id}"
headers = {"API-KEY": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'API-KEY': '<api-key>'}};
fetch('https://qa-api.endl.xyz/api/v0/webhooks/events/{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://qa-api.endl.xyz/api/v0/webhooks/events/{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 => [
"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://qa-api.endl.xyz/api/v0/webhooks/events/{id}"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("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://qa-api.endl.xyz/api/v0/webhooks/events/{id}")
.header("API-KEY", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://qa-api.endl.xyz/api/v0/webhooks/events/{id}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["API-KEY"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"code": 200,
"message": "Success",
"status": "SUCCESS",
"data": {
"id": "4d2f6a11-8c73-4b90-9e21-5f0a2c8d1e44",
"eventId": "evt_9f1a4c7b2e08",
"eventType": "payout.completed",
"subscriptionId": "2b1e8f40-3c9a-4d21-9f7e-6a1c0b5d2e34",
"status": "FAILED",
"attemptCount": 5,
"attemptBudget": 5,
"lastStatusCode": 500,
"lastErrorClass": "HTTP_5XX",
"lastError": "HTTP 500",
"lastLatencyMs": 231,
"requestTimestamp": "2026-09-02T12:34:56.789Z",
"requestSignature": "a3f9c1e8b2…",
"requestPayload": {
"eventId": "evt_9f1a4c7b2e08",
"eventType": "payout.completed",
"eventCreatedAt": "2026-09-02T12:34:55.001Z",
"version": "1.0",
"data": {
"referenceId": "c2608cc2-084b-41d1-8be2-c4f3abd55e5a",
"referenceType": "TRANSACTION",
"amount": "1500.00"
}
},
"responseBody": "Internal Server Error",
"responseTruncated": false,
"attempts": [
{
"attemptNo": 1,
"statusCode": 500,
"errorClass": "HTTP_5XX",
"latencyMs": 240,
"at": "2026-09-02T12:35:00.000Z"
}
],
"expiresAt": "2026-09-03T12:34:56.789Z",
"createdOn": "2026-09-02T12:34:56.789Z"
},
"errors": []
}