> ## Documentation Index
> Fetch the complete documentation index at: https://docs.rem.money/llms.txt
> Use this file to discover all available pages before exploring further.

# List webhook events

> List all webhook events delivered to your endpoints, with delivery status.

Every accept, transfer, and redeem fires a signed webhook. Use this endpoint to inspect delivery status, debug, or replay events.

## Event types

| Event              | When it fires                                                |
| :----------------- | :----------------------------------------------------------- |
| `accept.confirmed` | An inbound USDC deposit has been confirmed onchain           |
| `transfer.settled` | A transfer has settled on its target chain                   |
| `transfer.failed`  | A transfer failed compliance, routing, or onchain submission |
| `redeem.completed` | A fiat redemption has completed at the destination bank      |
| `redeem.failed`    | A redemption failed at the bank or compliance layer          |

## Signature verification

Every payload includes an `X-REM-Signature` header (HMAC-SHA256 of the raw body, keyed by your webhook secret). Verify with `@rem-money/sdk`:

```typescript theme={null}
import { verifyWebhook } from "@rem-money/sdk";

const isValid = verifyWebhook({
  payload: rawBody,
  signature: req.headers["x-rem-signature"],
  secret: process.env.REM_WEBHOOK_SECRET,
});
```


## OpenAPI

````yaml GET /v1/webhooks/events
openapi: 3.1.0
info:
  title: REM API
  description: >-
    Infrastructure for the new financial layer — stablecoin issuance and
    movement for institutions across Tempo, Solana, Base, and Arc.
  version: 1.0.0
servers:
  - url: https://api.rem.money
  - url: https://devnet.api.rem.money
security:
  - bearerAuth: []
paths:
  /v1/webhooks/events:
    get:
      tags:
        - Stablecoins
      summary: List webhook events
      description: >-
        List all webhook events delivered to your endpoints, with delivery
        status.
      parameters:
        - name: type
          in: query
          schema:
            type: string
        - name: limit
          in: query
          schema:
            type: integer
            default: 50
      responses:
        '200':
          description: Webhook events
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/WebhookEvent'
components:
  schemas:
    WebhookEvent:
      type: object
      properties:
        id:
          type: string
        type:
          type: string
          examples:
            - accept.confirmed
            - transfer.settled
            - redeem.completed
        delivered:
          type: boolean
        created_at:
          type: string
          format: date-time
        payload:
          type: object
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer

````