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

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

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

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

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

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
{
  "data": [
    {
      "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"
    }
  ],
  "pagination": {
    "has_more": true,
    "next_cursor": "YWJjMTIz"
  }
}
{
"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 delivery attempts for a specific webhook endpoint, ordered by creation date (newest first). Filter by status to find deliveries in a specific state: PENDING, SENDING, DELIVERED, or FAILED. Use this endpoint to inspect individual delivery attempts and identify terminal deliveries that may need a manual resend.
For retry policy and response handling details, see the Webhooks guide: Retry Policy.

Authorizations

X-API-Key
string
header
required

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

Path Parameters

id
string<uuid>
required

Endpoint ID

Query Parameters

status
enum<string>

Filter by delivery status

Available options:
PENDING,
SENDING,
DELIVERED,
FAILED
limit
integer
default:20

Maximum number of results (default 20, max 100)

Required range: x >= 1
cursor
string

Pagination cursor from previous response

Response

List of deliveries

data
object[]

Data contains the list of items

pagination
object

Pagination contains cursor information for fetching more results