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

# Get Webhook Logs

> Retrieve paginated webhook delivery logs

<Note>
  **Auth method: Signed (HMAC)** — this endpoint requires the full set of signed
  headers: `x-access-id`, `x-request-id`, `x-timestamp`, and an HMAC-SHA256
  `authorization` signature. See [Authentication](/api-reference/authentication#signed-hmac-authentication).
</Note>

## Headers

<ParamField header="authorization" type="string" required>
  Base64-encoded HMAC-SHA256 signature of the request payload using the API secret

  **Minimum string length:** `1`

  **Example:** `"5e73d044c44d733fcf819ad3409aaaddca840d421b69cb0b04e2c750fc62e-ce7526d36296237663ad1f06f62a730c0466516507196b3ce6567493c-c52a7cf63d"`
</ParamField>

<ParamField header="x-timestamp" type="string" required>
  Current timestamp in ISO 8601 format

  **Example:** `"2025-03-15T09:45:53.000Z"`
</ParamField>

<ParamField header="x-request-id" type="string" required>
  Unique identifier for the request (UUID v4)

  **Example:** `"550e8400-e29b-41d4-a716-446655440000"`
</ParamField>

<ParamField header="x-access-id" type="string" required>
  Your API access ID provided by Tender

  **Example:** `"your-access-id-here"`
</ParamField>

## Response

<ResponseField name="status" type="string" required>
  Status of the API request

  **Example:** `"success"`
</ResponseField>

<ResponseField name="message" type="string" required>
  Human-readable message describing the result

  **Example:** `"Webhook logs fetched"`
</ResponseField>

<ResponseField name="data" type="object" required>
  Webhook delivery logs and pagination data

  <Expandable title="data properties">
    <ResponseField name="webhookLogs" type="array">
      Array of webhook delivery log entries

      <Expandable title="log entry object">
        <ResponseField name="_id" type="string">
          Unique identifier for the log entry

          **Example:** `"691069ff947a702cfad9e862"`
        </ResponseField>

        <ResponseField name="webhookId" type="string">
          ID of the webhook that was triggered

          **Example:** `"691069ff947a702cfad9e861"`
        </ResponseField>

        <ResponseField name="eventType" type="string">
          Type of event that triggered the webhook

          **Example:** `"transaction_completed"`
        </ResponseField>

        <ResponseField name="status" type="string">
          Delivery status (success, failed, pending)

          **Example:** `"success"`
        </ResponseField>

        <ResponseField name="statusCode" type="number">
          HTTP status code from webhook endpoint

          **Example:** `200`
        </ResponseField>

        <ResponseField name="payload" type="object">
          Data sent to the webhook endpoint
        </ResponseField>

        <ResponseField name="response" type="string">
          Response received from the webhook endpoint
        </ResponseField>

        <ResponseField name="attempts" type="number">
          Number of delivery attempts

          **Example:** `1`
        </ResponseField>

        <ResponseField name="createdAt" type="string">
          ISO 8601 timestamp when the log entry was created

          **Example:** `"2025-11-09T10:20:00.000Z"`
        </ResponseField>
      </Expandable>
    </ResponseField>

    <ResponseField name="total" type="number">
      Total number of log entries

      **Example:** `0`
    </ResponseField>

    <ResponseField name="totalPages" type="number">
      Total number of pages available

      **Example:** `0`
    </ResponseField>
  </Expandable>
</ResponseField>


## OpenAPI

````yaml GET /v1/api/webhook/logs
openapi: 3.1.0
info:
  title: Tender API
  description: Tender Developer API for cryptocurrency payments and agent management
  version: 1.0.0
  contact:
    name: Tender Support
    url: https://tender.cash
servers:
  - url: https://secureapi.tender.cash
    description: Production Server
  - url: https://sandbox-api.tender.cash
    description: Sandbox Server
security:
  - SignedAuth: []
tags:
  - name: Agents
    description: Manage agents and sub-businesses
  - name: Transactions
    description: Payment and transaction operations
  - name: System
    description: System information and configuration
  - name: Webhooks
    description: Webhook management and logs
  - name: On-ramp
    description: Fiat-to-crypto on-ramp operations
  - name: Payouts
    description: Send crypto from merchant balance to a wallet address or payout account
  - name: Subwallets
    description: Provision and manage crypto wallet infrastructure for your end-users
paths:
  /v1/api/webhook/logs:
    get:
      tags:
        - Webhooks
      summary: Get Webhook Logs
      description: Retrieve webhook delivery logs
      operationId: getWebhookLogs
      parameters:
        - name: authorization
          in: header
          required: true
          description: >-
            Base64-encoded HMAC-SHA256 signature of the request payload using
            the API secret
          schema:
            type: string
        - name: x-timestamp
          in: header
          required: true
          description: Current timestamp in ISO 8601 format
          schema:
            type: string
            format: date-time
          example: '2025-03-15T09:45:53.000Z'
        - name: x-request-id
          in: header
          required: true
          description: Unique identifier for the request (UUID v4)
          schema:
            type: string
            format: uuid
          example: 550e8400-e29b-41d4-a716-446655440000
        - name: x-access-id
          in: header
          required: true
          description: Your API access ID provided by Tender
          schema:
            type: string
          example: your-access-id-here
      responses:
        '200':
          description: Webhook logs retrieved successfully
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/WebhookLogsResponse'
      security:
        - SignedAuth: []
components:
  schemas:
    WebhookLogsResponse:
      type: object
      properties:
        status:
          type: string
        message:
          type: string
        data:
          type: object
          properties:
            webhookLogs:
              type: array
              items:
                type: object
            total:
              type: integer
            totalPages:
              type: integer
  securitySchemes:
    SignedAuth:
      type: apiKey
      in: header
      name: authorization
      description: >-
        Signed (HMAC) authentication. Required headers: x-access-id,
        x-request-id (UUID v4), x-timestamp (ISO 8601), and authorization
        (Base64 HMAC-SHA256 signature of {timeStamp, requestId, accessId} using
        your access secret).

````