> ## 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 Permissions

> Retrieves paginated list of your delegated permissions.



## OpenAPI

````yaml GET /x402/permissions
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:
  /x402/permissions:
    get:
      tags:
        - X402 - Permissions
      summary: List Permissions
      description: Retrieves paginated list of your delegated permissions.
      operationId: listPermissions
      parameters:
        - name: page
          in: query
          schema:
            type: integer
            default: 1
        - name: offset
          in: query
          schema:
            type: integer
            default: 10
      responses:
        '200':
          description: List of permissions
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/PaginatedPermissions'
        '401':
          description: Unauthorized
components:
  schemas:
    PaginatedPermissions:
      type: object
      properties:
        permissions:
          type: array
          items:
            $ref: '#/components/schemas/Permission'
        totalCount:
          type: integer
        page:
          type: integer
    Permission:
      type: object
      properties:
        permissionHash:
          type: string
        planId:
          type: string
        ownerAddress:
          type: string
        maxCredits:
          type: integer
        usedCredits:
          type: integer
        remainingCredits:
          type: integer
        allowedAgents:
          type: array
          items:
            type: string
        status:
          type: string
        metadata:
          type: object
        transactions:
          type: array
          items:
            type: object
        createdAt:
          type: string
          format: date-time
        expiresAt:
          type: string
          format: date-time
  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**.

````