Silverflow Disputes API

The Disputes API from Silverflow — 9 operation(s) for disputes.

Business capability
Card Transaction Processing Management BC-1340.70

Operations 10

GET /disputes List Disputes #
GET /disputes/{disputeKey} Get Dispute #
GET /disputes/{disputeKey}/documents List Dispute Documents #
POST /disputes/{disputeKey}/documents Add Dispute Document #
POST /disputes/{disputeKey}/accept Accept Dispute #
POST /disputes/{disputeKey}/submitEvidence Submit Evidence #
POST /disputes/{disputeKey}/rejectEvidence Reject Evidence #
POST /disputes/{disputeKey}/defend Defend Dispute #
GET /disputes/{disputeKey}/eventHistory List Dispute History Events #
GET /disputes/eventHistory/{eventHistoryKey} Get Dispute History Event #

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-disputes-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 form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

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

OpenAPI Specification

silverflow-disputes-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  description: '**This OpenAPI specification cannot be used for code generation.** Please reach out to your TAM regarding code generation using the API Spec.'
  version: 1.417.0
  title: Silverflow Disputes API
  contact:
    name: API Support
    email: support@silverflow.com
  license:
    name: Commercial
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: Disputes
paths:
  /disputes:
    get:
      operationId: getDisputes
      summary: List Disputes
      description: 'This operation returns a (paged) list of all Disputes for the authenticated Agent.


        Requires `disputes:List` permission.'
      tags:
      - Disputes
      parameters:
      - $ref: '#/components/parameters/disputesSort'
      - $ref: '#/components/parameters/amountFrom'
      - $ref: '#/components/parameters/amountTo'
      - $ref: '#/components/parameters/disputeDateFrom'
      - $ref: '#/components/parameters/disputeDateTo'
      - $ref: '#/components/parameters/actionDueDateFrom'
      - $ref: '#/components/parameters/actionDueDateTo'
      - $ref: '#/components/parameters/disputeStatuses'
      - $ref: '#/components/parameters/disputeStages'
      - $ref: '#/components/parameters/networkQps'
      - $ref: '#/components/parameters/parameters-merchantKeyQs'
      - $ref: '#/components/parameters/acceptorKeyQp'
      - $ref: '#/components/parameters/searchKeyword'
      - $ref: '#/components/parameters/closed'
      - $ref: '#/components/parameters/actionRequired'
      - $ref: '#/components/parameters/limit'
      - $ref: '#/components/parameters/components-parameters-offsetToken'
      responses:
        '200':
          description: A (paged) list of Disputes
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/DisputesPage'
        '401':
          $ref: '#/components/responses/responses-UnauthorizedError'
        '403':
          $ref: '#/components/responses/responses-ForbiddenError'
        '429':
          $ref: '#/components/responses/responses-TooManyRequestsError'
  /disputes/{disputeKey}:
    get:
      operationId: getDispute
      summary: Get Dispute
      description: 'This operations returns the Dispute identified by the specified key.


        Requires `disputes:Get` permission.'
      tags:
      - Disputes
      parameters:
      - $ref: '#/components/parameters/disputeKey'
      responses:
        '200':
          description: The referenced Dispute
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Dispute'
              examples:
                received-dispute:
                  $ref: '#/components/examples/visa-dispute-received'
                dispute-liability-accepted:
                  $ref: '#/components/examples/dispute-liability-accepted'
                dispute-expires:
                  $ref: '#/components/examples/dispute-expires'
                dispute-won:
                  $ref: '#/components/examples/dispute-closedWon'
                dispute-awaiting-response:
                  $ref: '#/components/examples/dispute-awaiting-response'
        '401':
          $ref: '#/components/responses/responses-UnauthorizedError'
        '403':
          $ref: '#/components/responses/responses-ForbiddenError'
        '404':
          $ref: '#/components/responses/responses-NotFoundError'
        '429':
          $ref: '#/components/responses/responses-TooManyRequestsError'
  /disputes/{disputeKey}/documents:
    get:
      operationId: getDisputeDocumentsMetadata
      summary: List Dispute Documents
      description: 'This operation returns a (paged) list of (active) Documents (metadata) for a Dispute.


        Requires `disputes:ListDocuments` permission.'
      tags:
      - Disputes
      parameters:
      - $ref: '#/components/parameters/disputeKey'
      - $ref: '#/components/parameters/parameters-sortOrder'
      - $ref: '#/components/parameters/limit'
      - $ref: '#/components/parameters/components-parameters-offsetToken'
      - $ref: '#/components/parameters/owner'
      - $ref: '#/components/parameters/status'
      responses:
        '200':
          description: A (paged) list of Documents (metadata)
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/DisputeDocumentsPage'
        '401':
          $ref: '#/components/responses/responses-UnauthorizedError'
        '403':
          $ref: '#/components/responses/responses-ForbiddenError'
        '404':
          $ref: '#/components/responses/responses-NotFoundError'
        '429':
          $ref: '#/components/responses/responses-TooManyRequestsError'
    post:
      operationId: addDisputeDocumentsMetadata
      summary: Add Dispute Document
      description: 'This operations adds a new Document (metadata) for the associated Dispute.


        The maximum file size is **10MB** and the maximum combined size of all documents uploaded for a Dispute is **14.5MB**.


        Requires `disputes:AddDocument` permission.'
      tags:
      - Disputes
      parameters:
      - $ref: '#/components/parameters/disputeKey'
      requestBody:
        description: 'The request body allows to set metadata information for the Dispute document.

          '
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/DocumentCreate'
            examples:
              create-dispute-document:
                $ref: '#/components/examples/create-dispute-document'
      responses:
        '200':
          description: A document metadata object.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/DisputeDocumentWithoutFile'
        '401':
          $ref: '#/components/responses/responses-UnauthorizedError'
        '403':
          $ref: '#/components/responses/responses-ForbiddenError'
        '404':
          $ref: '#/components/responses/responses-NotFoundError'
        '429':
          $ref: '#/components/responses/responses-TooManyRequestsError'
  /disputes/{disputeKey}/accept:
    post:
      operationId: acceptDispute
      summary: Accept Dispute
      description: 'This operation is to accept liability of a dispute.


        Requires `disputes:Accept` permission.'
      tags:
      - Disputes
      parameters:
      - $ref: '#/components/parameters/disputeKey'
      - $ref: '#/components/parameters/ifMatch'
      responses:
        '200':
          description: The accepted dispute
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Dispute'
        '400':
          $ref: '#/components/responses/responses-BadRequestError'
        '401':
          $ref: '#/components/responses/responses-UnauthorizedError'
        '403':
          $ref: '#/components/responses/responses-ForbiddenError'
        '404':
          $ref: '#/components/responses/responses-NotFoundError'
        '409':
          $ref: '#/components/responses/responses-ConflictError'
        '412':
          $ref: '#/components/responses/responses-PreconditionFailedError'
        '429':
          $ref: '#/components/responses/responses-TooManyRequestsError'
  /disputes/{disputeKey}/submitEvidence:
    post:
      operationId: submitEvidence
      summary: Submit Evidence
      description: 'Evidence submission is required to defend a Dispute. Evidence can be submitted if the Dispute is in `received`, `evidenceRejected` or `defenseFailed` status.


        Requires `disputes:submitEvidence` permission.'
      tags:
      - Disputes
      parameters:
      - $ref: '#/components/parameters/disputeKey'
      - $ref: '#/components/parameters/ifMatch'
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/SubmitEvidence'
      responses:
        '200':
          description: The dispute
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Dispute'
        '400':
          $ref: '#/components/responses/responses-BadRequestError'
        '401':
          $ref: '#/components/responses/responses-UnauthorizedError'
        '403':
          $ref: '#/components/responses/responses-ForbiddenError'
        '404':
          $ref: '#/components/responses/responses-NotFoundError'
        '409':
          $ref: '#/components/responses/responses-ConflictError'
        '412':
          $ref: '#/components/responses/responses-PreconditionFailedError'
        '429':
          $ref: '#/components/responses/responses-TooManyRequestsError'
  /disputes/{disputeKey}/rejectEvidence:
    post:
      operationId: rejectEvidence
      summary: Reject Evidence
      description: 'Evidence rejection will move the Dispute to `evidenceRejected` status to allow the Merchant or Acquirer to update their defense.


        Requires `disputes:rejectEvidence` permission.'
      tags:
      - Disputes
      parameters:
      - $ref: '#/components/parameters/disputeKey'
      - $ref: '#/components/parameters/ifMatch'
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/RejectDispute'
      responses:
        '200':
          description: The dispute
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Dispute'
        '400':
          $ref: '#/components/responses/responses-BadRequestError'
        '401':
          $ref: '#/components/responses/responses-UnauthorizedError'
        '403':
          $ref: '#/components/responses/responses-ForbiddenError'
        '404':
          $ref: '#/components/responses/responses-NotFoundError'
        '409':
          $ref: '#/components/responses/responses-ConflictError'
        '412':
          $ref: '#/components/responses/responses-PreconditionFailedError'
        '429':
          $ref: '#/components/responses/responses-TooManyRequestsError'
  /disputes/{disputeKey}/defend:
    post:
      operationId: defendDispute
      summary: Defend Dispute
      description: 'Defending a Dispute will publish all documents that have been uploaded. Disputes in `received`, `evidenceSubmitted` or `defenseFailed` status can be defended, `actionRequired` flag will be true for these Disputes.

        It is possible to submit evidence while defending a Dispute. In that case the required information needs to be send in the body.


        Requires `disputes:Defend` permission.'
      tags:
      - Disputes
      parameters:
      - $ref: '#/components/parameters/disputeKey'
      - $ref: '#/components/parameters/ifMatch'
      requestBody:
        required: false
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/DisputeDefense'
      responses:
        '200':
          description: The defended dispute
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Dispute'
        '400':
          $ref: '#/components/responses/responses-BadRequestError'
        '401':
          $ref: '#/components/responses/responses-UnauthorizedError'
        '403':
          $ref: '#/components/responses/responses-ForbiddenError'
        '404':
          $ref: '#/components/responses/responses-NotFoundError'
        '409':
          $ref: '#/components/responses/responses-ConflictError'
        '412':
          $ref: '#/components/responses/responses-PreconditionFailedError'
        '429':
          $ref: '#/components/responses/responses-TooManyRequestsError'
  /disputes/{disputeKey}/eventHistory:
    get:
      operationId: getDisputeEventHistory
      summary: List Dispute History Events
      description: 'This operation returns a (paged) Dispute History Events for a Dispute.


        Requires `disputes:ListHistory` permission.'
      tags:
      - Disputes
      parameters:
      - $ref: '#/components/parameters/disputeKey'
      - $ref: '#/components/parameters/parameters-sortOrder'
      - $ref: '#/components/parameters/limit'
      - $ref: '#/components/parameters/components-parameters-offsetToken'
      - $ref: '#/components/parameters/initiator'
      - name: status
        description: The status of a Dispute Document. [Removal date is 06.12.2026]
        in: query
        deprecated: true
        required: false
        schema:
          type: string
          enum:
          - pending
          - active
          - archived
      responses:
        '200':
          description: A (paged) list of Dispute History Events
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/DisputeEventHistoryPage'
        '401':
          $ref: '#/components/responses/responses-UnauthorizedError'
        '403':
          $ref: '#/components/responses/responses-ForbiddenError'
        '404':
          $ref: '#/components/responses/responses-NotFoundError'
        '429':
          $ref: '#/components/responses/responses-TooManyRequestsError'
  /disputes/eventHistory/{eventHistoryKey}:
    get:
      operationId: getEventHistory
      summary: Get Dispute History Event
      description: 'Returns the Dispute History Event identified by the specified key.


        Requires `disputes:GetHistory` permission.'
      tags:
      - Disputes
      parameters:
      - $ref: '#/components/parameters/eventHistoryKey'
      responses:
        '200':
          description: The referenced Dispute History Event
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/DisputeEventHistory'
              examples:
                defenseSuccessfullyProcessedMastercard:
                  $ref: '#/components/examples/mc-defense-successfully-processed'
                defenseSuccessfullyProcessedVisa:
                  $ref: '#/components/examples/visa-defense-successfully-processed'
                disputeExpirerAcquirerSide:
                  $ref: '#/components/examples/dispute-expires-acquirer-side'
                disputeWon:
                  $ref: '#/components/examples/dispute-won'
                liabilityAccepted:
                  $ref: '#/components/examples/liability-accepted'
                mastercardChargebackReceived:
                  $ref: '#/components/examples/mc-chargeback-received'
                mastercardCollaborationRequestReceived:
                  $ref: '#/components/examples/collaboration-request-received'
                mastercardPrearbitrationReceived:
                  $ref: '#/components/examples/mc-prearbitration-received'
                visaChargebackReceived:
                  $ref: '#/components/examples/visa-chargeback-received'
                visaPrearbitrationReceived:
                  $ref: '#/components/examples/visa-prearbitration-received'
                visaPrearbitrationResponseReceived:
                  $ref: '#/components/examples/prearbitration-response-received'
        '401':
          $ref: '#/components/responses/responses-UnauthorizedError'
        '403':
          $ref: '#/components/responses/responses-ForbiddenError'
        '404':
          $ref: '#/components/responses/responses-NotFoundError'
        '429':
          $ref: '#/components/responses/responses-TooManyRequestsError'
components:
  schemas:
    disputeReference:
      description: Unique identifier assigned by the card networks.
      type: string
      readOnly: false
    DisputeEventHistoryPage:
      allOf:
      - $ref: '#/components/schemas/components-schemas-PageWithMoreItems'
      - type: object
        required:
        - events
        properties:
          events:
            type: array
            items:
              $ref: '#/components/schemas/DisputeEventHistory'
    disputeResponseReasonIdVisa:
      description: Unique code of a `disputeResponseReason`.
      type: string
      enum:
      - CNLD
      - CP
      - NL
      - ID
      - CE
      - ND
    components-schemas-agentKey:
      description: Uniquely identifies an Agent
      type: string
      pattern: ^cgt-[a-zA-Z0-9]+|current$
      minLength: 1
      maxLength: 120
      readOnly: false
      example: cgt-1UF2NafdfrdPMf2XrS2
    DocumentWithoutFile:
      type: object
      required:
      - key
      - agentKey
      - originalFilename
      - owner
      - status
      - created
      - version
      properties:
        key:
          $ref: '#/components/schemas/documentKey'
        agentKey:
          $ref: '#/components/schemas/components-schemas-agentKey'
        merchantKey:
          $ref: '#/components/schemas/components-schemas-merchantKey'
        disputeKey:
          $ref: '#/components/schemas/disputeKey'
        disputeStage:
          $ref: '#/components/schemas/disputeStage'
        originalFilename:
          $ref: '#/components/schemas/originalFilename'
        owner:
          $ref: '#/components/schemas/owner'
        description:
          $ref: '#/components/schemas/schemas-FreeTextField'
        status:
          type: string
          enum:
          - pending
        created:
          $ref: '#/components/schemas/openapi_components-schemas-created-3'
        version:
          $ref: '#/components/schemas/openapi_components-schemas-version'
    openapi_components-schemas-currencyCode-3:
      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
      - XCG
      - XOF
      - XPF
      - YER
      - ZAR
      - ZMW
      - ZWL
      description: 'The three-letter ISO code of the currency.


        **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           |

        | 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                                   

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