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

# Handle Coincircuit webhooks

> Receives deposit, payment, and payout events from CoincircuitMCP. Verified via HMAC-SHA256 signature.



## OpenAPI

````yaml /openapi.json post /api/v1/webhooks/incoming/coincircuit
openapi: 3.0.0
info:
  title: Dexxify API
  description: >-
    Crypto Infrastructure API for Africa (Wallets, Payouts, Offramp, Onramp,
    KYC, KYB)
  version: '1.0'
  contact:
    name: Dexxify
    url: https://www.dexxify.com
    email: dexxifyhq@gmail.com
servers: []
security: []
tags: []
paths:
  /api/v1/webhooks/incoming/coincircuit:
    post:
      tags:
        - Incoming Webhooks
      summary: Handle Coincircuit webhooks
      description: >-
        Receives deposit, payment, and payout events from CoincircuitMCP.
        Verified via HMAC-SHA256 signature.
      operationId: IncomingWebhooksController_handleCoincircuit
      parameters:
        - name: x-coincircuit-timestamp
          in: header
          description: Unix timestamp used in signature construction
          required: true
          schema:
            type: string
        - name: x-coincircuit-signature
          in: header
          description: 'HMAC-SHA256 signature — format: v1=<hex>'
          required: true
          schema:
            type: string
      responses:
        '200':
          description: >-
            Webhook acknowledged. Always returns 200 — signature verification
            failures are reported in the response body (`received: false`)
            rather than as an HTTP error.

````