Skip to main content
GET
/
v1
/
webhook-deliveries
/
{id}
Get a delivery
curl --request GET \
  --url https://api.scrip.dev/v1/webhook-deliveries/{id} \
  --header 'X-API-Key: <api-key>'
import requests

url = "https://api.scrip.dev/v1/webhook-deliveries/{id}"

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://api.scrip.dev/v1/webhook-deliveries/{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://api.scrip.dev/v1/webhook-deliveries/{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 => [
"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://api.scrip.dev/v1/webhook-deliveries/{id}"

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://api.scrip.dev/v1/webhook-deliveries/{id}")
.header("X-API-Key", "<api-key>")
.asString();
require 'uri'
require 'net/http'

url = URI("https://api.scrip.dev/v1/webhook-deliveries/{id}")

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
{
  "attempt_count": 1,
  "created_at": "2026-01-15T10:30:00Z",
  "delivered_at": "2026-01-15T10:30:01Z",
  "error_code": "consumer_response_timeout",
  "event_type": "balance.credited",
  "id": "d1e2f3a4-b5c6-7890-abcd-ef1234567890",
  "last_attempt_at": "2026-01-15T10:30:01Z",
  "last_error": "connection timed out after 10s",
  "last_response_body": "{\"received\":true}",
  "last_response_status": 200,
  "max_attempts": 8,
  "next_attempt_at": "2026-01-15T10:30:00Z",
  "resend_seq": 0,
  "status": "DELIVERED",
  "updated_at": "2026-01-15T10:30:01Z",
  "webhook_endpoint_id": "550e8400-e29b-41d4-a716-446655440000",
  "webhook_event_id": "f47ac10b-58cc-4372-a567-0e02b2c3d479"
}
{
"code": "bad_request",
"details": {
"expected": "uuid",
"field": "asset_id",
"fields": [
{
"expected": "<unknown>",
"field": "amount",
"message": "This field is required",
"reason": "required",
"received": "-10.00"
}
],
"reason": "invalid",
"received": "not-a-uuid"
},
"message": "Invalid request parameters"
}
{
"code": "unauthorized",
"details": {
"expected": "uuid",
"field": "asset_id",
"fields": [
{
"expected": "<unknown>",
"field": "amount",
"message": "This field is required",
"reason": "required",
"received": "-10.00"
}
],
"reason": "invalid",
"received": "not-a-uuid"
},
"message": "Missing or invalid credentials"
}
{
"code": "forbidden",
"details": {
"expected": "uuid",
"field": "asset_id",
"fields": [
{
"expected": "<unknown>",
"field": "amount",
"message": "This field is required",
"reason": "required",
"received": "-10.00"
}
],
"reason": "invalid",
"received": "not-a-uuid"
},
"message": "Insufficient permissions for this action"
}
{
"code": "not_found",
"details": {
"expected": "uuid",
"field": "asset_id",
"fields": [
{
"expected": "<unknown>",
"field": "amount",
"message": "This field is required",
"reason": "required",
"received": "-10.00"
}
],
"reason": "invalid",
"received": "not-a-uuid"
},
"message": "Resource not found"
}
{
"code": "internal_error",
"message": "An internal error occurred"
}
Returns a single delivery by ID. The response includes full debugging details: last_response_body (truncated to 4 KB), last_response_status, last_error, error_code, and resend_seq. Use this to diagnose why a delivery failed. Check last_response_status for HTTP errors, last_error for connection or timeout details, and error_code for stable alerting.
For usage patterns and examples, see the Webhooks guide: Debugging Deliveries.

Authorizations

X-API-Key
string
header
required

API key passed in the X-API-Key header.

Path Parameters

id
string<uuid>
required

Delivery ID

Response

Delivery details

attempt_count
integer

Number of delivery attempts made so far

Example:

1

created_at
string<date-time>

When the delivery record was created

Example:

"2026-01-15T10:30:00Z"

delivered_at
string<date-time>

When the delivery was successfully completed

Example:

"2026-01-15T10:30:01Z"

error_code
string

Stable, machine-readable classification of the last failed attempt, e.g. consumer_response_timeout, consumer_5xx, rate_limited (omitted when none)

Example:

"consumer_response_timeout"

event_type
string

The event type (e.g. balance.credited)

Example:

"balance.credited"

id
string<uuid>

Delivery ID

Example:

"d1e2f3a4-b5c6-7890-abcd-ef1234567890"

last_attempt_at
string<date-time>

When the last attempt was made

Example:

"2026-01-15T10:30:01Z"

last_error
string

Error message from the last attempt (network errors, timeouts)

Example:

"connection timed out after 10s"

last_response_body
string

Response body from the last attempt (truncated to 4 KB)

Example:

"{\"received\":true}"

last_response_status
integer

HTTP status code from the last attempt

Example:

200

max_attempts
integer

Maximum attempts before marking as FAILED

Example:

8

next_attempt_at
string<date-time>

When the next delivery attempt is scheduled

Example:

"2026-01-15T10:30:00Z"

resend_seq
integer

Manual-resend sequence: 0 = the original delivery, 1,2,... = manual resends

Example:

0

status
string

Delivery status: PENDING, SENDING, DELIVERED, or FAILED

Example:

"DELIVERED"

updated_at
string<date-time>

When the delivery record was last updated

Example:

"2026-01-15T10:30:01Z"

webhook_endpoint_id
string<uuid>

The endpoint this delivery targets

Example:

"550e8400-e29b-41d4-a716-446655440000"

webhook_event_id
string<uuid>

The webhook event that triggered this delivery

Example:

"f47ac10b-58cc-4372-a567-0e02b2c3d479"