---
title: "Retrieve Webhook Attempts"
method: GET
path: "/webhooks/{id}/attempts"
tags: ["Webhooks"]
---

# Retrieve Webhook Attempts

`GET /webhooks/{id}/attempts`

Retrieve webhook attempts for a specific webhook

## Path parameters

- `id` string, required

## Query parameters

- `status` 'unattempted' | 'successful' | 'failed' — An enumeration.
- `page` integer — The page number of the paginated response.

## Response `200`

OK

- WebhookAttemptOutputPage
  - `results` WebhookAttemptOutput[], required — The list of results for this page.
    - `id` string, required — A unique TypeID associated with the object.
    - `creation_date` string, date-time, required — The date and time at which the object was first created.
    - `status` string, required — The status of the webhook attempt.
    - `event_type` string, nullable — The type of the event that triggered the attempt.
    - `error_message` string, nullable — The failure reason, if the attempt failed. Includes the response status code and a snippet of the response body when the endpoint returned a non-2xx response.
    - `attempt_count` integer — The number of times this attempt has been retried.
    - `completion_date` string, date-time, nullable — When the attempt finished, if it has.
    - `duration_ms` integer, nullable — How long the HTTP request took, in milliseconds.
  - `next` string, nullable — The URL to the next page of results, if any.
  - `previous` string, nullable — The URL to the previous page of results, if any.
  - `count` integer, required — The total number of results across all pages.

## Other responses

- `401` — Unauthorized
- `403` — Forbidden
- `404` — Not Found
- `409` — Conflict
- `422` — Unprocessable Entity
- `429` — Too Many Requests

---

[API](https://skmtc.net/buttondown/apis/buttondown-api.md) · [All operations](https://skmtc.net/buttondown/apis/buttondown-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/buttondown/buttondown-api/versions/3a702c095d22/schema)
