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

# List permanent deposit addresses



## OpenAPI

````yaml /api-reference/openapi.json get /api/v2/permanent
openapi: 3.1.0
info:
  title: PawPayments API
  description: >-
    Public REST API for the PawPayments crypto payment gateway.


    All `/api/v2/*` endpoints require an `x-api-key` header issued in the
    merchant dashboard. Responses are wrapped in `{"ok": true, "result": ...}`
    on success and `{"ok": false, "error": {code, message, details?}}` on
    failure.
  version: 2.0.0
servers:
  - url: https://api.pawpayments.com
    description: Production
security:
  - ApiKeyAuth: []
tags:
  - name: Catalog
  - name: Merchant
  - name: Invoices
  - name: Payouts
  - name: Notifications
  - name: Permanent addresses
paths:
  /api/v2/permanent:
    get:
      tags:
        - Permanent addresses
      summary: List permanent deposit addresses
      operationId: get__api_v2_permanent
      parameters:
        - name: page
          in: query
          schema:
            default: 1
            minimum: 1
            title: Page
            type: integer
          required: false
          description: ''
        - name: per_page
          in: query
          schema:
            default: 20
            maximum: 100
            minimum: 1
            title: Per Page
            type: integer
          required: false
          description: ''
        - name: user_id
          in: query
          schema:
            anyOf:
              - type: string
              - type: 'null'
            default: null
            title: User Id
          required: false
          description: ''
        - name: family
          in: query
          schema:
            anyOf:
              - enum:
                  - evm
                  - bitcoin
                  - litecoin
                  - bitcoincash
                  - tron
                  - solana
                  - xrp
                type: string
              - type: 'null'
            default: null
            title: Family
          required: false
          description: ''
        - name: active
          in: query
          schema:
            anyOf:
              - type: boolean
              - type: 'null'
            default: null
            title: Active
          required: false
          description: ''
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/PermanentAddressListEnvelope.d4a12ff'
        '401':
          description: Unauthorized
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorEnvelope.d4a12ff'
        '422':
          description: Unprocessable Content
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorEnvelope.d4a12ff'
components:
  schemas:
    PermanentAddressListEnvelope.d4a12ff:
      properties:
        ok:
          const: true
          title: Ok
          type: boolean
        result:
          items:
            $ref: >-
              #/components/schemas/PermanentAddressListEnvelope.d4a12ff.PermanentAddress
          title: Result
          type: array
        pagination:
          $ref: '#/components/schemas/PermanentAddressListEnvelope.d4a12ff.Pagination'
      required:
        - ok
        - result
        - pagination
      title: PermanentAddressListEnvelope
      type: object
    ErrorEnvelope.d4a12ff:
      example:
        error:
          code: VALIDATION_ERROR
          details:
            - field: amount
              message: Field required
          message: Validation failed
        ok: false
      properties:
        ok:
          const: false
          title: Ok
          type: boolean
        error:
          $ref: '#/components/schemas/ErrorEnvelope.d4a12ff.ErrorBody'
      required:
        - ok
        - error
      title: ErrorEnvelope
      type: object
    PermanentAddressListEnvelope.d4a12ff.PermanentAddress:
      example:
        active: true
        address: '0x742d35Cc6634C0532925a3b844Bc9e7595f0bEb'
        created_at: 1763398900
        deactivated_at: null
        family: evm
        id: 65f1c3a4e8b1c2d3a4b5c6f0
        metadata:
          label: main wallet
        notify_url: https://shop.example.com/webhook/paw
        user_id: u_42
      properties:
        id:
          title: Id
          type: string
        user_id:
          title: User Id
          type: string
        family:
          title: Family
          type: string
        address:
          title: Address
          type: string
        active:
          title: Active
          type: boolean
        notify_url:
          anyOf:
            - type: string
            - type: 'null'
          default: null
          title: Notify Url
        metadata:
          anyOf:
            - type: object
            - type: 'null'
          default: null
          title: Metadata
        created_at:
          anyOf:
            - type: integer
            - type: 'null'
          default: null
          title: Created At
        deactivated_at:
          anyOf:
            - type: integer
            - type: 'null'
          default: null
          title: Deactivated At
      required:
        - id
        - user_id
        - family
        - address
        - active
      title: PermanentAddress
      type: object
    PermanentAddressListEnvelope.d4a12ff.Pagination:
      example:
        page: 1
        pages: 1
        per_page: 20
        total: 1
      properties:
        page:
          minimum: 1
          title: Page
          type: integer
        per_page:
          maximum: 100
          minimum: 1
          title: Per Page
          type: integer
        total:
          minimum: 0
          title: Total
          type: integer
        pages:
          minimum: 0
          title: Pages
          type: integer
      required:
        - page
        - per_page
        - total
        - pages
      title: Pagination
      type: object
    ErrorEnvelope.d4a12ff.ErrorBody:
      properties:
        code:
          description: Machine-readable error code (e.g. NOT_FOUND, VALIDATION_ERROR).
          title: Code
          type: string
        message:
          title: Message
          type: string
        details:
          anyOf:
            - {}
            - type: 'null'
          default: null
          description: >-
            Optional context. For VALIDATION_ERROR contains a list of {field,
            message}.
          title: Details
      required:
        - code
        - message
      title: ErrorBody
      type: object
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      name: x-api-key
      in: header

````