> ## 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 supported assets

> Returns every supported coin/token along with its chain, network family and the current global minimum invoice amount.



## OpenAPI

````yaml /api-reference/openapi.json get /api/v2/assets
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/assets:
    get:
      tags:
        - Catalog
      summary: List supported assets
      description: >-
        Returns every supported coin/token along with its chain, network family
        and the current global minimum invoice amount.
      operationId: get__api_v2_assets
      parameters: []
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AssetsEnvelope.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:
    AssetsEnvelope.d4a12ff:
      properties:
        ok:
          const: true
          title: Ok
          type: boolean
        result:
          items:
            $ref: '#/components/schemas/AssetsEnvelope.d4a12ff.Asset'
          title: Result
          type: array
      required:
        - ok
        - result
      title: AssetsEnvelope
      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
    AssetsEnvelope.d4a12ff.Asset:
      example:
        asset: usdt_tron
        chain: tron
        enabled: true
        min_amount: 3
        network_family: tron
        symbol: USDT
        type: token
      properties:
        asset:
          description: Internal asset key, e.g. usdt_tron.
          title: Asset
          type: string
        symbol:
          description: Display symbol, e.g. USDT.
          title: Symbol
          type: string
        chain:
          title: Chain
          type: string
        type:
          description: native | token
          title: Type
          type: string
        network_family:
          anyOf:
            - type: string
            - type: 'null'
          default: null
          title: Network Family
        min_amount:
          title: Min Amount
          type: number
        enabled:
          title: Enabled
          type: boolean
      required:
        - asset
        - symbol
        - chain
        - type
        - min_amount
        - enabled
      title: Asset
      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

````