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

# List Deliveries

> List delivery attempts for a webhook, newest first, using keyset (cursor) pagination. Optionally filter by status. Free (0 credits).



## OpenAPI

````yaml GET /webhooks/{id}/deliveries
openapi: 3.1.0
info:
  title: Webhooks API
  description: >-
    Manage webhook subscriptions as a first-class API resource. Create, list,
    retrieve, update, rotate the signing secret of, test, and delete webhooks;
    list delivery attempts and manually retry failed deliveries. The dashboard
    Webhooks UI calls these exact endpoints — there is no separate code path.
  license:
    name: MIT
  version: 2.0.0
servers:
  - url: https://www.trysignalbase.com/api/v2
security:
  - bearerAuth: []
paths:
  /webhooks/{id}/deliveries:
    get:
      summary: List Deliveries
      description: >-
        List delivery attempts for a webhook, newest first, using keyset
        (cursor) pagination. Optionally filter by status. Free (0 credits).
      operationId: listWebhookDeliveries
      parameters:
        - $ref: '#/components/parameters/WebhookId'
        - name: limit
          in: query
          required: false
          description: Deliveries per page. Minimum 1, maximum 100, default 50.
          schema:
            type: integer
            minimum: 1
            maximum: 100
            default: 50
        - name: status
          in: query
          required: false
          description: Filter by delivery status.
          schema:
            $ref: '#/components/schemas/DeliveryStatus'
        - name: cursor
          in: query
          required: false
          description: >-
            Opaque pagination cursor returned as pagination.next_cursor. Pass it
            back to fetch the next page. A null next_cursor means there are no
            more rows.
          schema:
            type: string
      responses:
        '200':
          description: A page of delivery attempts.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/WebhookDeliveriesResponse'
              example:
                success: true
                data:
                  - id: 9c8b7a65-4d3e-4f21-8a0b-1c2d3e4f5a60
                    event_type: funding.created
                    event_id: 1f2e3d4c-5b6a-4790-8a1b-2c3d4e5f6071
                    status: failed
                    response_status: 500
                    response_body: internal error
                    attempt_count: 1
                    delivered_at: null
                    failed_at: '2026-05-29T09:00:00.000Z'
                    created_at: '2026-05-29T09:00:00.000Z'
                pagination:
                  next_cursor: >-
                    eyJjcmVhdGVkQXQiOiIyMDI2LTA1LTI5VDA5OjAwOjAwLjAwMFoiLCJpZCI6IjljOGI3YTY1In0
                  limit: 50
                meta:
                  endpoint: webhooks.deliveries.list
                  creditsUsed: 0
        '401':
          $ref: '#/components/responses/Unauthorized'
        '403':
          $ref: '#/components/responses/SubscriptionExpired'
        '404':
          $ref: '#/components/responses/NotFound'
        '429':
          $ref: '#/components/responses/RateLimited'
        '500':
          $ref: '#/components/responses/InternalError'
components:
  parameters:
    WebhookId:
      name: id
      in: path
      required: true
      description: The webhook subscription ID.
      schema:
        type: string
  schemas:
    DeliveryStatus:
      type: string
      description: >-
        Delivery lifecycle status. done = endpoint returned 2xx; failed =
        non-2xx or network error; pending = recorded but not yet resolved.
      enum:
        - done
        - failed
        - pending
    WebhookDeliveriesResponse:
      type: object
      required:
        - success
        - data
        - pagination
        - meta
      properties:
        success:
          type: boolean
          const: true
        data:
          type: array
          items:
            $ref: '#/components/schemas/Delivery'
        pagination:
          $ref: '#/components/schemas/CursorPagination'
        meta:
          $ref: '#/components/schemas/ResponseMeta'
    Delivery:
      type: object
      required:
        - id
        - event_type
        - event_id
        - status
        - response_status
        - response_body
        - attempt_count
        - delivered_at
        - failed_at
        - created_at
      properties:
        id:
          type: string
          description: Delivery ID. Pass to the retry endpoint as deliveryId.
        event_type:
          $ref: '#/components/schemas/EventType'
        event_id:
          type: string
          description: >-
            Event ID, stable across the original delivery and any retries — use
            it to dedupe.
        status:
          $ref: '#/components/schemas/DeliveryStatus'
        response_status:
          type:
            - integer
            - 'null'
          description: >-
            HTTP status the endpoint returned, or 0 on a network error, null if
            not recorded.
        response_body:
          type:
            - string
            - 'null'
          description: First 1000 characters of the endpoint's response body.
        attempt_count:
          type: integer
          minimum: 1
        delivered_at:
          type:
            - string
            - 'null'
          format: date-time
        failed_at:
          type:
            - string
            - 'null'
          format: date-time
        created_at:
          type: string
          format: date-time
    CursorPagination:
      type: object
      required:
        - next_cursor
        - limit
      properties:
        next_cursor:
          type:
            - string
            - 'null'
          description: >-
            Opaque cursor for the next page, or null when there are no more
            rows.
        limit:
          type: integer
    ResponseMeta:
      type: object
      required:
        - endpoint
        - creditsUsed
      properties:
        endpoint:
          type: string
          description: Endpoint identifier (e.g. webhooks.create).
        creditsUsed:
          type: integer
          minimum: 0
          description: API credits consumed by this request.
    ErrorResponse:
      type: object
      required:
        - success
        - error
        - code
      properties:
        success:
          type: boolean
          const: false
        error:
          type: string
          description: Human-readable error message.
        code:
          type: string
          enum:
            - bad_request
            - invalid_api_key
            - subscription_expired
            - not_found
            - conflict
            - rate_limited
            - internal_server_error
            - internal_error
        retryAfter:
          type: integer
          description: >-
            Seconds until a retry is recommended. Present on rate-limit (429)
            responses.
    EventType:
      type: string
      description: >-
        Event type a subscription can register for. system.test is accepted but
        only ever delivered by the Send Test Event endpoint; it never fires
        automatically.
      enum:
        - funding.created
        - acquisition.created
        - job_change.created
        - hiring.created
        - new_company.created
        - system.test
  responses:
    Unauthorized:
      description: Missing or invalid API key.
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ErrorResponse'
          example:
            success: false
            error: Invalid API key. No key found.
            code: invalid_api_key
    SubscriptionExpired:
      description: The API key belongs to a team without an active subscription.
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ErrorResponse'
          example:
            success: false
            error: >-
              Subscription expired. Please upgrade your subscription:
              https://www.trysignalbase.com/#pricing
            code: subscription_expired
    NotFound:
      description: No webhook (or delivery) with that ID exists for the authenticated team.
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ErrorResponse'
          example:
            success: false
            error: Webhook not found
            code: not_found
    RateLimited:
      description: >-
        Rate limit exceeded for this team and endpoint. The response also sets
        X-RateLimit-Limit, X-RateLimit-Remaining, and X-RateLimit-Reset headers.
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ErrorResponse'
          example:
            success: false
            error: Too many requests. Please upgrade your plan or slow down.
            code: rate_limited
            retryAfter: 60
    InternalError:
      description: Unexpected server error.
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ErrorResponse'
          example:
            success: false
            error: An unknown error occurred
            code: internal_error
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: API key
      description: >-
        Signalbase API key. Include as a Bearer token in the Authorization
        header.

````