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

# Send a signed test ping

> POSTs a signed `{ "type": "ping" }` to your configured URL so you can validate wiring + signature verification. The ping is NOT an `audit.changed` event and carries a non-UUID event id / `x-serialized-event: ping`.



## OpenAPI

````yaml /api-reference/openapi.json post /webhook/test
openapi: 3.1.0
info:
  title: Serialized Audit API
  version: 1.0.0
  description: Submit a contract address and chain, receive an instant risk verdict.
servers:
  - url: https://www.serializedaudit.io/api
security:
  - apiKey: []
paths:
  /webhook/test:
    post:
      summary: Send a signed test ping
      description: >-
        POSTs a signed `{ "type": "ping" }` to your configured URL so you can
        validate wiring + signature verification. The ping is NOT an
        `audit.changed` event and carries a non-UUID event id /
        `x-serialized-event: ping`.
      operationId: testWebhook
      responses:
        '200':
          description: Delivery attempt result.
          content:
            application/json:
              schema:
                type: object
                properties:
                  ok:
                    type: boolean
                  status:
                    type: integer
                    description: HTTP status your endpoint returned.
                  error:
                    type: string
        '400':
          description: No webhook configured.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '401':
          description: Missing or invalid API key.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
components:
  schemas:
    Error:
      type: object
      required:
        - error
      properties:
        error:
          type: string
          description: Human-readable error message.
  securitySchemes:
    apiKey:
      type: apiKey
      in: header
      name: X-Auth-Key
      description: Your secret API key. Create one from your dashboard.

````