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

# List audit events



## OpenAPI

````yaml /openapi/anyspend-platform.json get /events
openapi: 3.1.0
info:
  title: AnySpend Platform API
  description: >-
    A Stripe-quality REST API for managing crypto payment links, products,
    customers, transactions, webhooks, and more. Built for developers, AI
    agents, and LLMs.
  version: 1.0.0
  contact:
    name: AnySpend Support
    url: https://anyspend.com
servers:
  - url: https://platform-api.anyspend.com/api/v1
    description: Current server
security:
  - apiKeyBearer: []
  - apiKeyHeader: []
tags:
  - name: Quick Pay
    description: Create payment links without authentication
  - name: Payment Links
    description: Manage payment links with items, forms, and shipping
  - name: Products
    description: Manage products and generate payment links from them
  - name: Checkout Sessions
    description: Server-side checkout session management
  - name: Transactions
    description: View and export transaction history
  - name: Customers
    description: Manage customer records
  - name: Webhooks
    description: Configure webhook endpoints and manage deliveries
  - name: Discount Codes
    description: Create and validate discount codes
  - name: Notifications
    description: Email and Telegram notification settings
  - name: Widgets
    description: Embeddable widget configurations
  - name: Organization
    description: Organization settings and defaults
  - name: Uploads
    description: Image upload management
  - name: API Keys
    description: API key self-management
  - name: Analytics
    description: Revenue and conversion analytics
  - name: Events
    description: API audit trail
paths:
  /events:
    get:
      tags:
        - Events
      summary: List audit events
      operationId: listEvents
      parameters:
        - $ref: '#/components/parameters/page'
        - $ref: '#/components/parameters/limit'
        - name: type
          in: query
          schema:
            type: string
        - name: resource_type
          in: query
          schema:
            type: string
        - name: from
          in: query
          schema:
            type: string
        - name: to
          in: query
          schema:
            type: string
      responses:
        '200':
          description: List of events
components:
  parameters:
    page:
      name: page
      in: query
      schema:
        type: integer
        default: 1
      description: Page number
    limit:
      name: limit
      in: query
      schema:
        type: integer
        default: 20
        maximum: 100
      description: Items per page
  securitySchemes:
    apiKeyBearer:
      type: http
      scheme: bearer
      description: API key passed as Bearer token. Keys start with `asp_`.
    apiKeyHeader:
      type: apiKey
      in: header
      name: X-API-Key
      description: API key passed via X-API-Key header.

````