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

# List webhook deliveries for a crawl

> Every webhook callback we've attempted for this crawl, with its status, attempt count, and last response — so you can see whether and why a delivery failed.



## OpenAPI

````yaml https://api.hydrafetch.com/openapi.json get /v1/web/crawl/{id}/deliveries
openapi: 3.0.0
info:
  title: Hydrafetch API
  description: >-
    Hydrafetch turns any URL into clean, LLM-ready data through one API.


    Give us a link and get back Markdown, the page's own structured data,
    extracted JSON, links, a

    summary, or a screenshot. Point us at a whole site and get every page. Ask a
    question and get

    answers with per-field confidence and the passage each value came from. You
    describe the outcome

    you want — the pipeline decides how to get it.


    ## Authentication


    Every request is authenticated with your API key in the `X-API-Key` header.
    Keys are scoped to a

    workspace and carry its credit balance.


    ## Credits


    Calls are billed in credits and charged only on success. A standard scrape
    is one credit; richer

    formats and the extraction tier cost more. Each response reports what it
    consumed.


    ## Conventions


    All timestamps are UTC ISO 8601. Long-running jobs (crawl, batch) return a
    job id you poll, or a

    webhook you register. Errors return a structured body with a stable `code`
    and an HTTP status.
  version: '1.0'
  contact:
    name: Hydrafetch
    url: https://hydrafetch.com
    email: team@hydrafetch.com
servers:
  - url: https://api.hydrafetch.com
    description: Production
security:
  - apiKey: []
tags:
  - name: Web Scraping
    description: >-
      Turn URLs into clean, LLM-ready content: scrape a single page, crawl or
      batch-scrape a whole site, map its URLs, search the web, and capture
      screenshots or images.
  - name: Web Extraction
    description: >-
      Pull schema-shaped JSON out of one or many pages, with optional per-field
      confidence and the source passage behind each value.
paths:
  /v1/web/crawl/{id}/deliveries:
    get:
      tags:
        - Web Scraping
      summary: List webhook deliveries for a crawl
      description: >-
        Every webhook callback we've attempted for this crawl, with its status,
        attempt count, and last response — so you can see whether and why a
        delivery failed.
      operationId: crawlDeliveries
      parameters:
        - name: id
          required: true
          in: path
          description: The crawl id.
          schema:
            type: string
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/WebhookDeliveriesResponseDto'
components:
  schemas:
    WebhookDeliveriesResponseDto:
      type: object
      properties:
        deliveries:
          type: array
          items:
            $ref: '#/components/schemas/WebhookDeliveryDto'
      required:
        - deliveries
    WebhookDeliveryDto:
      type: object
      properties:
        id:
          type: string
          example: 019f3c09-6fae-740f-9257-10c2b6af7f43
        event:
          type: string
          example: crawl.completed
          description: The event this delivery carried.
        status:
          type: string
          enum:
            - pending
            - success
            - failed
          example: success
          description: >-
            pending while retries remain, success once delivered, failed once
            given up.
        attempts:
          type: number
          example: 2
          description: How many delivery attempts have been made.
        responseStatus:
          type: object
          nullable: true
          example: 200
          description: HTTP status your endpoint returned on the last attempt.
        error:
          type: object
          nullable: true
          example: connect ETIMEDOUT
          description: Why the last attempt failed, if it did.
        deliveredAt:
          type: object
          nullable: true
          description: When the delivery succeeded (ISO 8601).
        createdAt:
          type: string
          description: When the delivery was first created (ISO 8601).
      required:
        - id
        - event
        - status
        - attempts
        - responseStatus
        - error
        - deliveredAt
        - createdAt
  securitySchemes:
    apiKey:
      type: apiKey
      in: header
      name: X-API-Key

````