List delivery history for a watch
curl --request GET \
--url https://api.vaquill.ai/api/v1/watches/{watch_id}/deliveries \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.vaquill.ai/api/v1/watches/{watch_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.vaquill.ai/api/v1/watches/{watch_id}/deliveries', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.vaquill.ai/api/v1/watches/{watch_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))
}{
"data": {
"deliveries": [
{
"id": 42,
"watchId": "9f2b1e0a-1234-4a11-8b1c-abcdef123456",
"refreshLogId": 1587,
"attemptedAt": "2026-08-05T07:00:03Z",
"statusCode": 200,
"success": true,
"attemptNumber": 1
}
]
},
"meta": {
"processingTimeMs": 15,
"creditsConsumed": 0
}
}{
"detail": "Insufficient API credits."
}{
"detail": "Insufficient API credits."
}{
"detail": "Insufficient API credits."
}{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>"
}
]
}{
"detail": "Insufficient API credits."
}List delivery history for a watch
The most recent webhook delivery attempts for a watch you own, newest first. Only webhook/both channel watches have delivery history; an email-only watch always returns an empty list here (email sends are not logged per-attempt). Test deliveries (POST /watches/{id}/test) never appear — they are deliberately not persisted.
Free.
GET
/
api
/
v1
/
watches
/
{watch_id}
/
deliveries
List delivery history for a watch
curl --request GET \
--url https://api.vaquill.ai/api/v1/watches/{watch_id}/deliveries \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.vaquill.ai/api/v1/watches/{watch_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.vaquill.ai/api/v1/watches/{watch_id}/deliveries', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.vaquill.ai/api/v1/watches/{watch_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))
}{
"data": {
"deliveries": [
{
"id": 42,
"watchId": "9f2b1e0a-1234-4a11-8b1c-abcdef123456",
"refreshLogId": 1587,
"attemptedAt": "2026-08-05T07:00:03Z",
"statusCode": 200,
"success": true,
"attemptNumber": 1
}
]
},
"meta": {
"processingTimeMs": 15,
"creditsConsumed": 0
}
}{
"detail": "Insufficient API credits."
}{
"detail": "Insufficient API credits."
}{
"detail": "Insufficient API credits."
}{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>"
}
]
}{
"detail": "Insufficient API credits."
}Authorizations
API key issued from the developer dashboard. Pass as Authorization: Bearer vq_key_...
Path Parameters
Query Parameters
Max deliveries to return.
Required range:
1 <= x <= 200Response
The watch's delivery history, newest first.
Last modified on August 23, 2026
Was this page helpful?
⌘I

