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

# List delivery attempts

> Returns the delivery history for a webhook endpoint.



## OpenAPI

````yaml /openapi.yaml get /api/v1/webhooks/{id}/deliveries
openapi: 3.0.3
info:
  title: Torpedo API
  version: '1.0'
  description: |
    Torpedo is a transactional email API built for developers.
    Send emails from your own verified domain with a single HTTP call.
  contact:
    email: support@torpedo.co.mz
  termsOfService: https://torpedo.co.mz/terms
servers:
  - url: https://api.torpedo.co.mz
    description: Production
security:
  - ApiKeyAuth: []
paths:
  /api/v1/webhooks/{id}/deliveries:
    get:
      tags:
        - Webhooks
      summary: List delivery attempts
      description: Returns the delivery history for a webhook endpoint.
      operationId: listWebhookDeliveries
      parameters:
        - name: id
          in: path
          required: true
          schema:
            type: string
            format: uuid
        - name: page
          in: query
          schema:
            type: integer
            default: 1
        - name: limit
          in: query
          schema:
            type: integer
            default: 20
      responses:
        '200':
          description: Delivery attempt history
          content:
            application/json:
              schema:
                type: object
                properties:
                  data:
                    type: array
                    items:
                      type: object
                      properties:
                        id:
                          type: string
                          format: uuid
                        event:
                          type: string
                          example: email.delivered
                        status:
                          type: string
                          enum:
                            - delivered
                            - failed
                        responseStatus:
                          type: integer
                          nullable: true
                          example: 200
                        errorMessage:
                          type: string
                          nullable: true
                        createdAt:
                          type: string
                          format: date-time
                        deliveredAt:
                          type: string
                          format: date-time
                          nullable: true
                        failedAt:
                          type: string
                          format: date-time
                          nullable: true
                  meta:
                    $ref: '#/components/schemas/PaginationMeta'
        '404':
          description: Webhook not found
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
components:
  schemas:
    PaginationMeta:
      type: object
      properties:
        total:
          type: integer
          example: 42
        perPage:
          type: integer
          example: 20
        page:
          type: integer
          example: 1
        lastPage:
          type: integer
          example: 3
    Error:
      type: object
      properties:
        errors:
          type: array
          items:
            type: object
            properties:
              message:
                type: string
                example: Domain not verified
              field:
                type: string
                example: from
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: X-API-Key
      description: |
        Prefix `tor_` followed by a base64url-encoded random key.
        Obtain one from `POST /api/v1/workspaces` or `POST /api/v1/auth/keys`.

````