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

# List Delegation Transactions

> Returns a paginated list of charge transactions recorded against a delegation owned by the authenticated user. Requires a Nevermined API key.



## OpenAPI

````yaml GET /delegation/{delegationId}/transactions
openapi: 3.1.0
info:
  title: Nevermined API
  description: >-
    API for managing AI agents, payment plans, and x402 payments in the
    Nevermined ecosystem.


    ## Prerequisites


    You need a Nevermined API Key to authenticate. Get one at
    [nevermined.app](https://nevermined.app) under **Settings > API Keys**.


    See the [5-Minute Setup Guide](/docs/integrate/quickstart/5-minute-setup)
    for detailed instructions.
  license:
    name: MIT
  version: 1.0.0
servers:
  - url: https://api.sandbox.nevermined.app/api/v1
    description: Sandbox (Testing) - Base Sepolia
  - url: https://api.live.nevermined.app/api/v1
    description: Live (Production) - Base Mainnet
security:
  - bearerAuth: []
tags:
  - name: Protocol - Agents
    description: Endpoints for registering and managing AI agents
  - name: Protocol - Plans
    description: Endpoints for creating and managing payment plans
  - name: Protocol - Credits
    description: Endpoints for minting and redeeming credits
  - name: Protocol - Access
    description: Endpoints for access tokens and request validation
  - name: X402 - Permissions
    description: Endpoints for x402 delegated permissions
paths:
  /delegation/{delegationId}/transactions:
    get:
      tags:
        - Delegation
      summary: List transactions for a delegation
      description: >-
        Returns a paginated list of charge transactions recorded against a
        delegation owned by the authenticated user. Requires a Nevermined API
        key.
      operationId: DelegationController_getTransactions
      parameters:
        - name: delegationId
          required: true
          in: path
          description: UUID v4 of the delegation whose transactions are listed.
          schema:
            type: string
            format: uuid
        - name: page
          required: false
          in: query
          description: Page number (1-based). Defaults to 1.
          schema:
            type: integer
            default: 1
        - name: offset
          required: false
          in: query
          description: Number of items per page. Defaults to 10.
          schema:
            type: integer
            default: 10
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/DelegationTransactionListDto'
        '404':
          description: Delegation not found
components:
  schemas:
    DelegationTransactionListDto:
      type: object
      properties:
        totalResults:
          type: number
        page:
          type: number
        offset:
          type: number
        transactions:
          type: array
          items:
            $ref: '#/components/schemas/DelegationTransactionDto'
      required:
        - totalResults
        - page
        - offset
        - transactions
    DelegationTransactionDto:
      type: object
      properties:
        id:
          type: string
          example: tx-uuid
        delegationId:
          type: string
          example: delegation-uuid
        providerTransactionId:
          type: string
          example: pi_1Abc2Def3Ghi4Jkl
        amountCents:
          type: string
          example: '1000'
        currency:
          type: string
          example: usd
        status:
          type: string
          example: succeeded
        failureReason:
          type: string
          example: null
          nullable: true
        createdAt:
          format: date-time
          type: string
          example: '2026-02-13T14:00:00Z'
      required:
        - id
        - delegationId
        - providerTransactionId
        - amountCents
        - currency
        - status
        - failureReason
        - createdAt
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: >-
        Your Nevermined API Key (starts with 'nvm:'). Get one at
        [nevermined.app](https://nevermined.app) under **Settings > API Keys**.

````

## Related topics

- [List Delegations](/docs/api-reference/delegation/list-delegations.md)
- [X402 Protocol](/docs/api-reference/typescript/x402.md)
- [List Permissions](/docs/api-reference/x402/list-permissions.md)
- [Card Enrollment](/docs/products/payments/card-enrollment.md)
- [Delegations](/docs/products/payments/mandates.md)
