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

# List Payin Options

> List the currently available payin options — deliverable assets and fiat currency/payment-method/country combinations — as covered by the active provider institutions.



## OpenAPI

````yaml /openapi.yaml get /payins/options
openapi: 3.1.0
info:
  version: 2.0.15
  title: Dfns
servers:
  - url: https://api.dfns.io
    description: Default - Europe
  - url: https://api.uae.dfns.io
    description: UAE
  - url: https://api.dfns.ninja
    description: <Deprecated> Staging
security: []
paths:
  /payins/options:
    get:
      tags:
        - Payins
      summary: List Payin Options
      description: >-
        List the currently available payin options — deliverable assets and fiat
        currency/payment-method/country combinations — as covered by the active
        provider institutions.
      parameters:
        - schema:
            type: string
            enum:
              - CircleMint
              - Borderless
            description: >-
              The provider to list options from. Only Borderless has
              coverage-dependent options.
          required: true
          description: >-
            The provider to list options from. Only Borderless has
            coverage-dependent options.
          name: provider
          in: query
      responses:
        '200':
          description: Success
          content:
            application/json:
              schema:
                type: object
                properties:
                  assets:
                    type: array
                    items:
                      type: string
                    description: The provider's asset codes deliverable by the active PFIs.
                  currencies:
                    type: array
                    items:
                      type: object
                      properties:
                        currency:
                          type: string
                          enum:
                            - USD
                            - EUR
                          description: >-
                            Fiat currency of the payin (for Circle Mint it
                            determines the delivered stablecoin: USD → USDC, EUR
                            → EURC).
                        paymentMethods:
                          type: array
                          items:
                            type: object
                            properties:
                              paymentMethod:
                                type: string
                                enum:
                                  - Wire
                                  - ACH
                                  - Sepa
                                description: >-
                                  The fiat payment rail the payer uses to fund
                                  the deposit.
                              countries:
                                type: array
                                items:
                                  type: string
                                description: >-
                                  ISO-3166 Alpha-2 countries the fiat can be
                                  paid from with this payment method.
                            required:
                              - paymentMethod
                              - countries
                          description: >-
                            The payment methods available for this currency,
                            with their eligible countries.
                      required:
                        - currency
                        - paymentMethods
                    description: >-
                      The fiat currencies payins can be funded with, per payment
                      method and country.
                required:
                  - assets
                  - currencies
      security:
        - authenticationToken: []
components:
  securitySchemes:
    authenticationToken:
      type: http
      scheme: bearer
      bearerFormat: JWT
      description: >-
        **Bearer Token:** Used to authenticate API requests.

        More details how to generate the token: [Authentication
        flows](https://docs.dfns.co/api-reference/auth/login-flows)

````