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

# List transactions

> Returns the full revenue ledger showing every payment and the three-way split between enterprise partner, Singularity, and infrastructure.



## OpenAPI

````yaml GET /api/v1/enterprise/transactions
openapi: 3.1.0
info:
  title: x402 Singularity Layer API
  description: >-
    OpenAPI-backed reference for marketplace discovery, payment routes,
    webhooks, wallet-first auth, agent endpoints, and ERC-8004 flows.
  version: 1.0.0
servers:
  - url: https://api.x402layer.cc
security: []
tags:
  - name: Marketplace
    description: Public discovery and listing lookup
  - name: Public Endpoints
    description: Public endpoint metadata and hosted checkout context
  - name: Public Payment Links
    description: Hosted public payment-link lookup
  - name: Payments
    description: Hosted x402 payment challenge routes
  - name: Receipts
    description: Signed receipt lookup and verification helpers
  - name: Ratings
    description: Public listing ratings and authenticated rating actions
  - name: Webhooks
    description: Seller webhook management API
  - name: Agent Auth
    description: Wallet-first challenge and verification routes
  - name: Agent Endpoints
    description: Create, read, top up, and delete agent endpoints
  - name: ERC-8004
    description: Agent registry and registration lifecycle routes
  - name: Marketplace Agents
    description: Public ERC-8004 marketplace discovery routes
  - name: Compute Catalog
    description: Compute plans, regions, and OS catalog
  - name: Compute Instances
    description: Provision, inspect, extend, and destroy compute instances
  - name: Compute API Keys
    description: API keys for compute agent access
  - name: Fundraiser Campaigns
    description: List, view, create, and edit fundraiser campaigns
  - name: Fundraiser Contributions
    description: Record and list campaign contributions
  - name: Fundraiser Comments
    description: Campaign comment threads
  - name: Fundraiser Media
    description: Campaign image uploads and OG images
  - name: Enterprise
    description: >-
      Enterprise partner configuration, endpoint listing, revenue stats, and
      transaction ledger
  - name: Staking
    description: Agentic $SGL staking
  - name: SGL Grid
    description: >-
      Decentralized, confidential, OpenAI-compatible inference served by
      attested TEE nodes.
  - name: Compute Credits
    description: Prepaid USDC credit balance shared across Machines and Grid.
paths:
  /api/v1/enterprise/transactions:
    servers:
      - url: https://studio.x402layer.cc
    get:
      tags:
        - Enterprise
      summary: List transactions
      description: >-
        Returns the full revenue ledger showing every payment and the three-way
        split between enterprise partner, Singularity, and infrastructure.
      parameters:
        - name: page
          in: query
          schema:
            type: integer
            default: 1
          description: Page number
        - name: limit
          in: query
          schema:
            type: integer
            default: 50
            maximum: 100
          description: Results per page
        - name: type
          in: query
          schema:
            type: string
            enum:
              - endpoint_creation
              - topup
              - recharge
          description: Filter by transaction type
      responses:
        '200':
          description: Paginated transaction ledger
          content:
            application/json:
              schema:
                type: object
                properties:
                  transactions:
                    type: array
                    items:
                      $ref: '#/components/schemas/EnterpriseTransaction'
                  pagination:
                    $ref: '#/components/schemas/EnterprisePagination'
        '401':
          description: Missing or invalid API key
      security:
        - enterpriseApiKey: []
components:
  schemas:
    EnterpriseTransaction:
      type: object
      properties:
        id:
          type: string
          format: uuid
        payment_type:
          type: string
          enum:
            - endpoint_creation
            - topup
            - recharge
        total_amount:
          type: number
        enterprise_amount:
          type: number
        singularity_amount:
          type: number
        infra_amount:
          type: number
        currency:
          type: string
        chain:
          type: string
        tx_hash:
          type: string
        payer_wallet:
          type: string
        enterprise_distributed:
          type: boolean
        created_at:
          type: string
          format: date-time
    EnterprisePagination:
      type: object
      properties:
        page:
          type: integer
        limit:
          type: integer
        total:
          type: integer
        pages:
          type: integer
  securitySchemes:
    enterpriseApiKey:
      type: apiKey
      in: header
      name: X-Enterprise-Key
      description: >-
        Enterprise partner API key with `sgl_ent_` prefix. Create keys in the
        Enterprise Dashboard under API Keys.

````