---
title: "List Endpoint Attempts"
method: GET
path: "/api/v1/webhooks/endpoints/{endpoint_id}/attempts"
tags: ["External: Webhooks"]
---

# List Endpoint Attempts

`GET /api/v1/webhooks/endpoints/{endpoint_id}/attempts`

## Path parameters

- `endpoint_id` string, required

## Query parameters

- `limit` integer — Items per page.
- `iterator` string, nullable — Cursor from the previous page's `iterator` field.
- `before` string, date-time, nullable — Only attempts created before this timestamp.
- `after` string, date-time, nullable — Only attempts created after this timestamp.
- `status` integer, nullable — Filter by status: 0=success, 1=pending, 2=failed, 3=sending.
- `event_types` string[], nullable — Filter by event type(s).

## Response `200`

Successful Response

- PaginatedResponseWebhookMessageAttemptResponse
  - `data` WebhookMessageAttemptResponse[], required
    - `id` string, required
    - `endpointId` string, required
    - `msgId` string, required
    - `url` string, required
    - `response` string, required
    - `responseStatusCode` integer, required
    - `responseDurationMs` integer, required
    - `status` integer, required
    - `statusText` string, nullable
    - `triggerType` integer, required
    - `timestamp` string, required
    - `msg` WebhookMessageResponse — A single webhook message (outgoing event emitted to all subscribed endpoints).
      - `id` string, required
      - `eventType` string, required
      - `eventId` string, nullable
      - `timestamp` string, required
      - `channels` string[], nullable
      - `tags` string[], nullable
      - `payload` object, nullable
  - `done` boolean, required — True when this is the last page.
  - `iterator` string, nullable — Pass as `iterator` in the next request to fetch the following page.
  - `prevIterator` string, nullable

## Other responses

- `422` — Validation Error

---

[API](https://skmtc.net/openwearables/apis/open-wearables-api.md) · [All operations](https://skmtc.net/openwearables/apis/open-wearables-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/openwearables/open-wearables-api/versions/37c1c527cd8f/schema)
