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

# List webhooks



## OpenAPI

````yaml /openapi.json post /ramp/webhooks
openapi: 3.1.0
info:
  title: Etherfuse FX API
  description: Partner-facing ramp API for onramps, offramps, swaps, and KYC.
  license:
    name: Proprietary
  version: 1.0.0
servers:
  - url: https://api.sand.etherfuse.com
    description: Sandbox
security:
  - ApiKeyAuth: []
tags:
  - name: Authentication
    description: >-
      Partner JWT authentication — exchange a JWT for an access token, or launch
      a user into the app.
  - name: Lookup
    description: >-
      Public reference data: exchange rates, stablebonds, bond costs, country
      codes.
  - name: Assets
    description: Rampable stablecoins and stablebonds available per blockchain.
  - name: Onboarding
    description: Hosted and programmatic customer onboarding.
  - name: Bank Accounts
    description: Register and retrieve customer bank accounts.
  - name: Quotes
    description: Price quotes for onramps, offramps, and swaps.
  - name: Orders
    description: Create, track, and manage ramp orders.
  - name: Swaps
    description: Crypto-to-crypto swaps.
  - name: Sponsored
    description: Token approvals for sponsored (gasless) offramps.
  - name: Customers
    description: Customer (child-organization) records.
  - name: Wallets
    description: Register and manage customer wallets.
  - name: KYC
    description: Submit and check customer KYC status.
  - name: Webhooks
    description: Event notification subscriptions.
  - name: Organizations
    description: Organization identity, child orgs, and partner fees.
paths:
  /ramp/webhooks:
    post:
      tags:
        - Webhooks
      summary: List webhooks
      operationId: get_webhooks
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/PagedRequest'
        required: true
      responses:
        '200':
          description: Paginated webhooks
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/PagedWebhooks'
components:
  schemas:
    PagedRequest:
      type: object
      properties:
        filters:
          oneOf:
            - type: 'null'
            - 66644a67-3351-4b18-966b-40159f1cb146
        pageNumber:
          type: integer
          description: which page of results to return (starts at 0)
          minimum: 0
        pageSize:
          type: integer
          description: The number of items to get back in one page
          minimum: 0
      example:
        pageNumber: 0
        pageSize: 30
    PagedWebhooks:
      type: object
      description: A page of webhooks.
      required:
        - items
        - totalItems
        - pageSize
        - pageNumber
        - totalPages
      properties:
        items:
          type: array
          items:
            $ref: '#/components/schemas/Webhook'
          description: The items on this page.
        next:
          type:
            - string
            - 'null'
          description: URL to fetch the next page of results, if available.
        pageNumber:
          type: integer
          description: Zero-based index of this page.
          example: 0
          minimum: 0
        pageSize:
          type: integer
          description: Number of items per page.
          example: 30
          minimum: 0
        totalItems:
          type: integer
          description: Total number of items across all pages.
          example: 42
          minimum: 0
        totalPages:
          type: integer
          description: Total number of pages.
          example: 2
          minimum: 0
    Webhook:
      type: object
      required:
        - id
        - eventType
        - url
        - createdAt
        - updatedAt
      properties:
        createdAt:
          type: integer
          format: int64
          description: Unix timestamp in seconds.
        eventType:
          $ref: '#/components/schemas/WebhookEvent'
        id:
          type: string
          format: uuid
        updatedAt:
          type: integer
          format: int64
          description: Unix timestamp in seconds.
        url:
          type: string
      example:
        createdAt: 1748345400
        eventType: order_updated
        id: d4e5f6a7-b8c9-0123-defa-234567890123
        updatedAt: 1748431800
        url: https://example.com/webhooks/etherfuse
    WebhookEvent:
      type: string
      enum:
        - bank_account_updated
        - customer_updated
        - order_updated
        - swap_updated
        - kyc_updated
        - kyb_updated
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: Authorization
      description: API key sent in the Authorization header.

````