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

# List All Project Deliveries

> Returns deliveries across all endpoints for the project, newest first.



## OpenAPI

````yaml GET /projects/{projectId}/webhooks/deliveries
openapi: 3.0.3
info:
  title: Echo API
  description: |
    Echo is a voice notification platform. Use your API key (returned on signup)
    in the `x-api-key` header for all `/v1/*` endpoints.

    The API key implicitly scopes every request to your project and business —
    no need to pass IDs in the URL.
  version: 1.0.0
servers:
  - url: https://api.meetecho.ai/v1
    description: Production
security: []
tags:
  - name: Auth
    description: Signup, login, token refresh
  - name: Customers
    description: Manage customers within your project
  - name: Agents
    description: Manage reusable voice agents
  - name: Notifications
    description: Trigger and inspect outbound calls
  - name: API Keys
    description: Create and revoke API keys for your project
  - name: Project
    description: Inspect and configure your project settings
  - name: Webhook Endpoints
    description: >-
      Create and manage webhook endpoints — each with its own URL, event
      subscriptions, and signing secret
  - name: Delivery Logs
    description: >-
      Inspect delivery history, per-attempt details, and manually retry failed
      deliveries
paths:
  /projects/{projectId}/webhooks/deliveries:
    get:
      tags:
        - Delivery Logs
      summary: List all project deliveries
      description: Returns deliveries across all endpoints for the project, newest first.
      parameters:
        - name: projectId
          in: path
          required: true
          schema:
            type: string
            format: uuid
          example: e56b4c35-882d-4604-9944-9763d314ea59
        - name: status
          in: query
          schema:
            type: string
            enum:
              - pending
              - retrying
              - success
              - failed
        - name: event_name
          in: query
          schema:
            type: string
            enum:
              - call.started
              - call.ended
              - call.summary
        - name: limit
          in: query
          schema:
            type: integer
            minimum: 1
            maximum: 100
            default: 50
        - name: cursor
          in: query
          schema:
            type: string
          description: Pagination cursor from `next_cursor` in previous response
      responses:
        '200':
          description: Paginated delivery list
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/WebhookDeliveryList'
      security:
        - ApiKey: []
        - BearerAuth: []
components:
  schemas:
    WebhookDeliveryList:
      type: object
      properties:
        data:
          type: array
          items:
            $ref: '#/components/schemas/WebhookDelivery'
        next_cursor:
          type: string
          nullable: true
          description: >-
            Pass as `cursor` query param to fetch the next page. null when no
            more results.
    WebhookDelivery:
      type: object
      properties:
        id:
          type: string
          format: uuid
          example: d1e2f3a4-b5c6-7890-abcd-ef1234567890
        webhook_endpoint_id:
          type: string
          format: uuid
          example: a1b2c3d4-e5f6-7890-abcd-ef1234567890
        project_id:
          type: string
          format: uuid
          example: e56b4c35-882d-4604-9944-9763d314ea59
        event_id:
          type: string
          format: uuid
          example: cc66d0a2-7cfd-481f-9826-596e2bb9d58f
        event_name:
          type: string
          enum:
            - call.started
            - call.ended
            - call.summary
          example: call.summary
        payload:
          type: object
        status:
          type: string
          enum:
            - pending
            - retrying
            - success
            - failed
          example: success
        attempt_count:
          type: integer
          example: 1
        next_retry_at:
          type: string
          format: date-time
          nullable: true
        created_at:
          type: string
          format: date-time
          example: '2026-04-12T15:54:24.323Z'
        updated_at:
          type: string
          format: date-time
          example: '2026-04-12T15:54:24.323Z'
  securitySchemes:
    ApiKey:
      type: apiKey
      in: header
      name: x-api-key
      description: 'Echo API key — format: `echo_<64 hex chars>`. Returned once on signup.'
    BearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT
      description: JWT refresh token. Use the refresh_token from login/signup.

````