Silverflow Card Info API

Provides information from the card networks about Card Ranges.

Business capability
Payments & Card Management BC-1340

Operations 2

POST /cardInfo Request Card Info #
GET /cardInfo/{network} Request all card info for a card network #

Documentation

Specifications

Other Resources

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/silverflow-card-info-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no email required.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

silverflow-card-info-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Silverflow Card Info API
  version: 1.417.0
  contact:
    name: API Support
    email: support@silverflow.com
  license:
    name: Commercial
  description: 'Operations tagged Card Info across 2 of this provider''s published API definitions: silverflow-openapi.yml, silverflow-openapi.yml. Each path carries the servers of the definition it was published in.'
servers:
- url: https://eu-west-1.api.silverflow.com/v1
  description: Production URL for Europe - Equivalent to https://api.silverflow.co/v1
- url: https://us-east-2.api.silverflow.com/v1
  description: Production URL for North America
- url: https://eu-west-1.api-sbx.silverflow.com/v1
  description: Sandbox URL - Equivalent to https://api-sbx.silverflow.co/v1
security:
- ApiKey: []
- BearerToken: []
tags:
- name: Card Info
  description: Provides information from the card networks about Card Ranges.
paths:
  /cardInfo:
    post:
      operationId: postCardInfo
      summary: Request Card Info
      description: 'Request information provided by the card networks on a Card Range.

        Requires `cardInfo:GetInfo` permission.

        '
      tags:
      - Card Info
      requestBody:
        required: true
        description: A request for information on a certain card range based on a (partial) card number or a processor token key.
        content:
          application/json:
            schema:
              oneOf:
              - $ref: '#/components/schemas/CardInfoRequestByCard'
              - $ref: '#/components/schemas/CardInfoRequestByProcessorToken'
            examples:
              cardNumberMasterCard:
                $ref: '#/components/examples/request-card-info-mastercard'
      responses:
        '200':
          description: Information on the requested Card Range
          content:
            application/json:
              schema:
                oneOf:
                - $ref: '#/components/schemas/MultiSourceResponse'
                - $ref: '#/components/schemas/SingleSourceResponse'
              examples:
                mastercard:
                  $ref: '#/components/examples/card-info-response-mastercard'
                visa:
                  $ref: '#/components/examples/card-info-response-visa'
        '400':
          $ref: '#/components/responses/responses-BadRequestError'
        '401':
          $ref: '#/components/responses/responses-UnauthorizedError'
        '403':
          $ref: '#/components/responses/responses-ForbiddenError'
        '404':
          $ref: '#/components/responses/responses-NotFoundError'
        '429':
          $ref: '#/components/responses/responses-TooManyRequestsError'
    servers:
    - url: https://eu-west-1.api.silverflow.com/v1
      description: Production URL for Europe - Equivalent to https://api.silverflow.co/v1
    - url: https://us-east-2.api.silverflow.com/v1
      description: Production URL for North America
    - url: https://eu-west-1.api-sbx.silverflow.com/v1
      description: Sandbox URL - Equivalent to https://api-sbx.silverflow.co/v1
  /cardInfo/{network}:
    get:
      operationId: getCardInfo
      summary: Request all card info for a card network
      description: 'Request information provided by the card network on all available Card Ranges.


        Since the response can be very large, this endpoint supports HTTP Compression with the `gzip` format.


        Requires `cardInfo:GetInfo` permission.

        '
      tags:
      - Card Info
      parameters:
      - $ref: '#/components/parameters/bulkCardInfoNetwork'
      responses:
        '200':
          description: Information on all Card Ranges of Card Network
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/CardInfoCardNetworkResponse'
              examples:
                mastercard:
                  $ref: '#/components/examples/card-info-card-network-response-mastercard'
                visa:
                  $ref: '#/components/examples/card-info-card-network-response-visa'
        '400':
          $ref: '#/components/responses/responses-BadRequestError'
        '401':
          $ref: '#/components/responses/responses-UnauthorizedError'
        '403':
          $ref: '#/components/responses/responses-ForbiddenError'
        '429':
          $ref: '#/components/responses/responses-TooManyRequestsError'
    servers:
    - url: https://eu-west-1.api.silverflow.com/v1
      description: Production URL for Europe - Equivalent to https://api.silverflow.co/v1
    - url: https://us-east-2.api.silverflow.com/v1
      description: Production URL for North America
    - url: https://eu-west-1.api-sbx.silverflow.com/v1
      description: Sandbox URL - Equivalent to https://api-sbx.silverflow.co/v1
components:
  schemas:
    components-schemas-pan:
      type: string
      description: Full digits of a card
      pattern: ^\d+$
      minLength: 12
      maxLength: 19
      format: password
      example: '4761070000000905'
    VisaAccountFundingSource:
      properties:
        code:
          type: string
          enum:
          - C
          - D
          - P
          - H
          - R
        description:
          type: string
    CardInfoCardNetworkResponse:
      type: object
      required:
      - items
      properties:
        items:
          type: array
          items:
            $ref: '#/components/schemas/SingleSourceResponse'
    DuplicatedBancontactCardInfo:
      allOf:
      - $ref: '#/components/schemas/BancontactSpecificCardInfo'
      - $ref: '#/components/schemas/CardInfoResponseBase'
    DuplicatedMastercardCardInfo:
      description: Mastercard-specific Card Information.
      allOf:
      - $ref: '#/components/schemas/MastercardSpecificCardInfo'
      - $ref: '#/components/schemas/CardInfoResponseBase'
    cardInfoCurrencyCode:
      type: string
      enum:
      - AED
      - AFN
      - ALL
      - AMD
      - ANG
      - AOA
      - ARS
      - AUD
      - AWG
      - AZN
      - BAM
      - BBD
      - BDT
      - BGN
      - BHD
      - BIF
      - BMD
      - BND
      - BOB
      - BRL
      - BSD
      - BTN
      - BWP
      - BYN
      - BZD
      - CAD
      - CDF
      - CHF
      - CLP
      - CNH
      - CNY
      - COP
      - CRC
      - CUC
      - CUP
      - CVE
      - CZK
      - DJF
      - DKK
      - DOP
      - DZD
      - EGP
      - ERN
      - ETB
      - EUR
      - FJD
      - FKP
      - GBP
      - GEL
      - GHS
      - GIP
      - GMD
      - GNF
      - GTQ
      - GYD
      - HKD
      - HNL
      - HRK
      - HTG
      - HUF
      - IDR
      - ILS
      - INR
      - IQD
      - IRR
      - ISK
      - JMD
      - JOD
      - JPY
      - KES
      - KGS
      - KHR
      - KMF
      - KPW
      - KRW
      - KWD
      - KYD
      - KZT
      - LAK
      - LBP
      - LKR
      - LRD
      - LSL
      - LYD
      - MAD
      - MDL
      - MGA
      - MKD
      - MMK
      - MNT
      - MOP
      - MRU
      - MUR
      - MVR
      - MWK
      - MXN
      - MYR
      - MZN
      - NAD
      - NGN
      - NIO
      - NOK
      - NPR
      - NZD
      - OMR
      - PAB
      - PEN
      - PGK
      - PHP
      - PKR
      - PLN
      - PYG
      - QAR
      - RON
      - RSD
      - RUB
      - RWF
      - SAR
      - SBD
      - SCR
      - SDG
      - SEK
      - SGD
      - SHP
      - SLE
      - SLL
      - SOS
      - SRD
      - SSP
      - STN
      - SVC
      - SYP
      - SZL
      - THB
      - TJS
      - TMT
      - TND
      - TOP
      - TRY
      - TTD
      - TWD
      - TZS
      - UAH
      - UGX
      - USD
      - UYU
      - UYW
      - UZS
      - VES
      - VND
      - VUV
      - WST
      - XAF
      - XCD
      - XOF
      - XPF
      - YER
      - ZAR
      - ZMW
      - ZWG
      - ZWL
      - XXX
      description: 'The three-letter ISO code of the currency.

        When the currency is not known, the placeholder value `XXX` is used.


        **European ISO Currency Codes**


        <details>


        | Country — Currency                       | Code | Numeric | Minor Units |

        | ---------------------------------------- | ---- | ------- | ----------- |

        | Åland Islands — Euro                     | EUR  | 978     | 2           |

        | Andorra — Euro                           | EUR  | 978     | 2           |

        | Austria — Euro                           | EUR  | 978     | 2           |

        | Belgium — Euro                           | EUR  | 978     | 2           |

        | Cyprus — Euro                            | EUR  | 978     | 2           |

        | Estonia — Euro                           | EUR  | 978     | 2           |

        | European Union — Euro                    | EUR  | 978     | 2           |

        | Finland — Euro                           | EUR  | 978     | 2           |

        | France — Euro                            | EUR  | 978     | 2           |

        | French Guiana — Euro                     | EUR  | 978     | 2           |

        | French Southern Territories (The) — Euro | EUR  | 978     | 2           |

        | Germany — Euro                           | EUR  | 978     | 2           |

        | Greece — Euro                            | EUR  | 978     | 2           |

        | Guadeloupe — Euro                        | EUR  | 978     | 2           |

        | Holy See (The) — Euro                    | EUR  | 978     | 2           |

        | Ireland — Euro                           | EUR  | 978     | 2           |

        | Italy — Euro                             | EUR  | 978     | 2           |

        | Latvia — Euro                            | EUR  | 978     | 2           |

        | Lithuania — Euro                         | EUR  | 978     | 2           |

        | Luxembourg — Euro                        | EUR  | 978     | 2           |

        | Malta — Euro                             | EUR  | 978     | 2           |

        | Martinique — Euro                        | EUR  | 978     | 2           |

        | Mayotte — Euro                           | EUR  | 978     | 2           |

        | Monaco — Euro                            | EUR  | 978     | 2           |

        | Montenegro — Euro                        | EUR  | 978     | 2           |

        | Netherlands (The) — Euro                 | EUR  | 978     | 2           |

        | Portugal — Euro                          | EUR  | 978     | 2           |

        | Réunion — Euro                           | EUR  | 978     | 2           |

        | Saint Barthélemy — Euro                  | EUR  | 978     | 2           |

        | Saint Martin (French Part) — Euro        | EUR  | 978     | 2           |

        | Saint Pierre And Miquelon — Euro         | EUR  | 978     | 2           |

        | San Marino — Euro                        | EUR  | 978     | 2           |

        | Slovakia — Euro                          | EUR  | 978     | 2           |

        | Slovenia — Euro                          | EUR  | 978     | 2           |

        | Spain — Euro                             | EUR  | 978     | 2           |


        </details>


        **US ISO Currency Codes**


        <details>


        | Country — Currency                                     | Code | Numeric | Minor Units |

        | ------------------------------------------------------ | ---- | ------- | ----------- |

        | American Samoa — US Dollar                             | USD  | 840     | 2           |

        | Bonaire, Sint Eustatius And Saba — US Dollar           | USD  | 840     | 2           |

        | British Indian Ocean Territory (The) — US Dollar       | USD  | 840     | 2           |

        | Ecuador — US Dollar                                    | USD  | 840     | 2           |

        | El Salvador — US Dollar                                | USD  | 840     | 2           |

        | Guam — US Dollar                                       | USD  | 840     | 2           |

        | Haiti — US Dollar                                      | USD  | 840     | 2           |

        | Marshall Islands (The) — US Dollar                     | USD  | 840     | 2           |

        | Micronesia (Federated States Of) — US Dollar           | USD  | 840     | 2           |

        | Northern Mariana Islands (The) — US Dollar             | USD  | 840     | 2           |

        | Palau — US Dollar                                      | USD  | 840     | 2           |

        | Panama — US Dollar                                     | USD  | 840     | 2           |

        | Puerto Rico — US Dollar                                | USD  | 840     | 2           |

        | Timor-leste — US Dollar                                | USD  | 840     | 2           |

        | Turks And Caicos Islands (The) — US Dollar             | USD  | 840     | 2           |

        | United States Minor Outlying Islands (The) — US Dollar | USD  | 840     | 2           |

        | United States Of America (The) — US Dollar             | USD  | 840     | 2           |

        | Virgin Islands (British) — US Dollar                   | USD  | 840     | 2           |

        | Virgin Islands (U.s.) — US Dollar                      | USD  | 840     | 2           |


        </details>


        **Other ISO Currency Codes**


        <details>


        | Country — Currency                                                          | Code | Numeric | Minor Units |

        | --------------------------------------------------------------------------- | ---- | ------- | ----------- |

        | Afghanistan — Afghani                                                       | AFN  | 971     | 2           |

        | Albania — Lek                                                               | ALL  | 008     | 2           |

        | Algeria — Algerian Dinar                                                    | DZD  | 012     | 2           |

        | Angola — Kwanza                                                             | AOA  | 973     | 2           |

        | Anguilla — East Caribbean Dollar                                            | XCD  | 951     | 2           |

        | Antigua And Barbuda — East Caribbean Dollar                                 | XCD  | 951     | 2           |

        | Argentina — Argentine Peso                                                  | ARS  | 032     | 2           |

        | Armenia — Armenian Dram                                                     | AMD  | 051     | 2           |

        | Aruba — Aruban Florin                                                       | AWG  | 533     | 2           |

        | Australia — Australian Dollar                                               | AUD  | 036     | 2           |

        | Azerbaijan — Azerbaijan Manat                                               | AZN  | 944     | 2           |

        | Bahamas (The) — Bahamian Dollar                                             | BSD  | 044     | 2           |

        | Bahrain — Bahraini Dinar                                                    | BHD  | 048     | 3           |

        | Bangladesh — Taka                                                           | BDT  | 050     | 2           |

        | Barbados — Barbados Dollar                                                  | BBD  | 052     | 2           |

        | Belarus — Belarusian Ruble                                                  | BYN  | 933     | 2           |

        | Belize — Belize Dollar                                                      | BZD  | 084     | 2           |

        | Benin — CFA Franc BCEAO                                                     | XOF  | 952     | 0           |

        | Bermuda — Bermudian Dollar                                                  | BMD  | 060     | 2           |

        | Bhutan — Indian Rupee                                                       | INR  | 356     | 2           |

        | Bhutan — Ngultrum                                                           | BTN  | 064     | 2           |

        | Bolivia (Plurinational State Of) — Boliviano                                | BOB  | 068     | 2           |

        | Bosnia And Herzegovina — Convertible Mark                                   | BAM  | 977     | 2           |

        | Botswana — Pula                                                             | BWP  | 072     | 2           |

        | Bouvet Island — Norwegian Krone                                             | NOK  | 578     | 2           |

        | Brazil — Brazilian Real                                                     | BRL  | 986     | 2           |

        | Brunei Darussalam — Brunei Dollar                                           | BND  | 096     | 2           |

        | Bulgaria — Bulgarian Lev                                                    | BGN  | 975     | 2           |

        | Burkina Faso — CFA Franc BCEAO                                              | XOF  | 952     | 0           |

        | Burundi — Burundi Franc                                                     | BIF  | 108     | 0           |

        | Cabo Verde — Cabo Verde Escudo                                              | CVE  | 132     | 2           |

        | Cambodia — Riel                                                             | KHR  | 116     | 2           |

        | Cameroon — CFA Franc BEAC                                                   | XAF  | 950     | 0           |

        | Canada — Canadian Dollar                                                    | CAD  | 124     | 2           |

        | Cayman Islands (The) — Cayman Islands Dollar                                | KYD  | 136     | 2           |

        | Central African Republic (The) — CFA Franc BEAC                             | XAF  | 950     | 0           |

        | Chad — CFA Franc BEAC                                                       | XAF  | 950     | 0           |

        | Chile — Chilean Peso                                                        | CLP  | 152     | 0           |

        | China — Yuan Renminbi                                                       | CNY  | 156     | 2           |

        | China - Hong Kong Renminbi                                                  | CNH  | -       | 2           |

        | Christmas Island — Australian Dollar                                        | AUD  | 036     | 2           |

        | Cocos (Keeling) Islands (The) — Australian Dollar                           | AUD  | 036     | 2           |

        | Colombia — Colombian Peso                                                   | COP  | 170     | 2           |

        | Comoros (The) — Comorian Franc                                              | KMF  | 174     | 0           |

        | Congo (The Democratic Republic Of The) — Congolese Franc                    | CDF  | 976     | 2           |

        | Congo (The) — CFA Franc BEAC                                                | XAF  | 950     | 0           |

        | Cook Islands (The) — New Zealand Dollar                                     | NZD  | 554     | 2           |

        | Costa Rica — Costa Rican Colon                                              | CRC  | 188     | 2           |

        | Côte D''ivoire — CFA Franc BCEAO                                             | XOF  | 952     | 0           |

        | Croatia — Kuna                                                              | HRK  | 191     | 2           |

        | Cuba — Cuban Peso                                                           | CUP  | 192     | 2           |

        | Cuba — Peso Convertible                                                     | CUC  | 931     | 2           |

        | Curaçao — Netherlands Antillean Guilder                                     | ANG  | 532     | 2           |

        | Czechia — Czech Koruna                                                      | CZK  | 203     | 2           |

        | Denmark — Danish Krone                                                      | DKK  | 208     | 2           |

        | Djibouti — Djibouti Franc                                                   | DJF  | 262     | 0           |

        | Dominica — East Caribbean Dollar                                            | XCD  | 951     | 2           |

        | Dominican Republic (The) — Dominican Peso                                   | DOP  | 214     | 2           |

        | Egypt — Egyptian Pound                                                      | EGP  | 818     | 2           |

        | El Salvador — El Salvador Colon                                             | SVC  | 222     | 2           |

        | Equatorial Guinea — CFA Franc BEAC                                          | XAF  | 950     | 0           |

        | Eritrea — Nakfa                                                             | ERN  | 232     | 2           |

        | Ethiopia — Ethiopian Birr                                                   | ETB  | 230     | 2           |

        | Falkland Islands (The) [Malvinas] — Falkland Islands Pound                  | FKP  | 238     | 2           |

        | Faroe Islands (The) — Danish Krone                                          | DKK  | 208     | 2           |

        | Fiji — Fiji Dollar                                                          | FJD  | 242     | 2           |

        | French Polynesia — CFP Franc                                                | XPF  | 953     | 0           |

        | Gabon — CFA Franc BEAC                                                      | XAF  | 950     | 0           |

        | Gambia (The) — Dalasi                                                       | GMD  | 270     | 2           |

        | Georgia — Lari                                                              | GEL  | 981     | 2           |

        | Ghana — Ghana Cedi                                                          | GHS  | 936     | 2           |

        | Gibraltar — Gibraltar Pound                                                 | GIP  | 292     | 2           |

        | Greenland — Danish Krone                                                    | DKK  | 208     | 2           |

        | Grenada — East Caribbean Dollar                                             | XCD  | 951     | 2           |

        | Guatemala — Quetzal                                                         | GTQ  | 320     | 2           |

        | Guernsey — Pound Sterling                                                   | GBP  | 826     | 2           |

        | Guinea — Guinean Franc                                                      | GNF  | 324     | 0           |

        | Guinea-bissau — CFA Franc BCEAO                                             | XOF  | 952     | 0           |

        | Guyana — Guyana Dollar                                                      | GYD  | 328     | 2           |

        | Haiti — Gourde                                                              | HTG  | 332     | 2           |

        | Heard Island And Mcdonald Islands — Australian Dollar                       | AUD  | 036     | 2           |

        | Honduras — Lempira                                                          | HNL  | 340     | 2           |

        | Hong Kong — Hong Kong Dollar                                                | HKD  | 344     | 2           |

        | Hungary — Forint                                                            | HUF  | 348     | 2           |

        | Iceland — Iceland Krona                                                     | ISK  | 352     | 0           |

        | India — Indian Rupee                                                        | INR  | 356     | 2           |

        | Indonesia — Rupiah                                                          | IDR  | 360     | 2           |

        | Iran (Islamic Republic Of) — Iranian Rial                                   | IRR  | 364     | 2           |

        | Iraq — Iraqi Dinar                                                          | IQD  | 368     | 3           |

        | Isle Of Man — Pound Sterling                                                | GBP  | 826     | 2           |

        | Israel — New Israeli Sheqel                                                 | ILS  | 376     | 2           |

        | Jamaica — Jamaican Dollar                                                   | JMD  | 388     | 2           |

        | Japan — Yen                                                                 | JPY  | 392     | 0           |

        | Jersey — Pound Sterling                                                     | GBP  | 826     | 2           |

        | Jordan — Jordanian Dinar                                                    | JOD  | 400     | 3           |

        | Kazakhstan — Tenge                                                          | KZT  | 398     | 2           |

        | Kenya — Kenyan Shilling                                                     | KES  | 404     | 2           |

        | Kiribati — Australian Dollar                                                | AUD  | 036     | 2           |

        | Korea (The Democratic People’s Republic Of) — North Korean Won              | KPW  | 408     | 2           |

        | Korea (The Republic Of) — Won                                               | KRW  | 410     | 0           |

        | Kuwait — Kuwaiti Dinar                                                      | KWD  | 414     | 3           |

        | Kyrgyzstan — Som                                                            | KGS  | 417     | 2           |

        | Lao People’s Democratic Republic (The) — Lao Kip                            | LAK  | 418     | 2           |

        | Lebanon — Lebanese Pound                                                    | LBP  | 422     | 2           |

        | Lesotho — Loti                                                              | LSL  | 426     | 2           |

        | Lesotho — Rand                                                              | ZAR  | 710     | 2           |

        | Liberia — Liberian Dollar                                                   | LRD  | 430     | 2           |

        | Libya — Libyan Dinar                                                        | LYD  | 434     | 3           |

        | Liechtenstein — Swiss Franc                                                 | CHF  | 756     | 2           |

        | Macao — Pataca                                                              | MOP  | 446     | 2           |

        | Macedonia (The Former Yugoslav Republic Of) — Denar                         | MKD  | 807     | 2           |

        | Madagascar — Malagasy Ariary                                                | MGA  | 969     | 2           |

        | Malawi — Malawi Kwacha                                                      | MWK  | 454     | 2           |

        | Malaysia — Malaysian Ringgit                                                | MYR  | 458     | 2           |

        | Maldives — Rufiyaa                                                          | MVR  | 462     | 2           |

        | Mali — CFA Franc BCEAO                                                      | XOF  | 952     | 0           |

        | Mauritania — Ouguiya                                                        | MRU  | 929     | 2           |

        | Mauritius — Mauritius Rupee                                                 | MUR  | 480     | 2           |

        | Mexico — Mexican Peso                                                       | MXN  | 484     | 2           |

        | Moldova (The Republic Of) — Moldovan Leu                                    | MDL  | 498     | 2           |

        | Mongolia — Tugrik                                                           | MNT  | 496     | 2           |

        | Montserrat — East Caribbean Dollar                                          | XCD  | 951     | 2           |

        | Morocco — Moroccan Dirham                                                   | MAD  | 504     | 2           |

        | Mozambique — Mozambique Metical                                             | MZN  | 943     | 2           |

        | Myanmar — Kyat                                                              | MMK  | 104     | 2           |

        | Namibia — Namibia Dollar                                                    | NAD  | 516     | 2           |

        | Namibia — Rand                                                              | ZAR  | 710     | 2           |

        | Nauru — Australian Dollar                                                   | AUD  | 036     | 2           |

        | Nepal — Nepalese Rupee                                                      | NPR  | 524     | 2           |

        | New Caledonia — CFP Franc                                                   | XPF  | 953     | 0           |

        | New Zealand — New Zealand Dollar                                            | NZD  | 554     | 2           |

        | Nicaragua — Cordoba Oro                                                     | NIO  | 558     | 2           |

        | Niger (The) — CFA Franc BCEAO                                               | XOF  | 952     | 0           |

        | Nigeria — Naira                                                             | NGN  | 566     | 2           |

        | Niue — New Zealand Dollar                                                   | NZD  | 554     | 2           |

        | Norfolk Island — Australian Dollar                                          | AUD  | 036     | 2           |

        | Norway — Norwegian Krone                                                    | NOK  | 578     | 2           |

        | Oman — Rial Omani                                                           | OMR  | 512     | 3           |

        | Pakistan — Pakistan Rupee                                                   | PKR  | 586     | 2           |

        | Panama — Balboa                                                             | PAB  | 590     | 2           |

        | Papua New Guinea — Kina                                                     | PGK  | 598     | 2           |

        | Paraguay — Guarani                                                          | PYG  | 600     | 0           |

        | Peru — Sol                                                                  | PEN  | 604     | 2           |

        | Philippines (The) — Philippine Peso                                         | PHP  | 608     | 2           |

        | Pitcairn — New Zealand Dollar                                               | NZD  | 554     | 2           |

        | Poland — Zloty                                                              | PLN  | 985     | 2           |

        | Qatar — Qatari Rial                                                         | QAR  | 634     | 2           |

        | Romania — Romanian Leu                                                      | RON  | 946     | 2           |

        | Russian Federation (The) — Russian Ruble                                    | RUB  | 643     | 2           |

        | Rwanda — Rwanda Franc                                                       | RWF  | 646     | 0           |

        | Saint Helena, Ascension And Tristan Da Cunha — Saint Helena Pound           | SHP  | 654     | 2           |

        | Saint Kitts And Nevis — East Caribbean Dollar                               | XCD  | 951     | 2           |

        | Saint Lucia — East Caribbean Dollar                                         | XCD  | 951     | 2           |

        | Saint Vincent And The Grenadines — East Caribbean Dollar                    | XCD  | 951     | 2           |

        | Samoa — Tala                                                                | WST  | 882     | 2           |

        | Sao Tome And Principe — Dobra                               

# --- truncated at 32 KB (137 KB total) ---
# Full source: https://raw.githubusercontent.com/api-evangelist/silverflow/refs/heads/main/openapi/silverflow-card-info-api-openapi.yml