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

# View payout methods

> See payout methods available to your platform by currency and country

### Query parameters

<ParamField query="Currency" type="string" required>
  **Possible values:** `AED`, `AUD`, `CAD`, `CHF`, `CNH`, `CZK`, `DKK`, `EUR`, `GBP`, `HKD`, `HUF`, `ILS`, `JPY`, `MXN`, `NOK`, `NZD`, `PLN`, `RON`, `SAR`, `SEK`, `SGD`, `TRY`, `USD`, `ZAR`

  The currency of the payout method.
</ParamField>

<ParamField query="Country" type="string" required>
  Format: Two-letter country code ([ISO 3166-1 alpha-2 format](/api-reference/overview/data-formats))

  The destination country of the payout method.
</ParamField>

### Responses

<AccordionGroup>
  <Accordion title="200" defaultOpen>
    <ResponseField name="AvailablePayoutMethods" type="array (string)">
      **Possible values:** `LocalBankTransfer`, `InternationalBankTransfer`

      The payout methods available for the currency and country combination.
    </ResponseField>
  </Accordion>
</AccordionGroup>

<AccordionGroup>
  <Accordion title="400 - Currency not supported">
    ```json theme={null}
    {
        "Id": "0d361fcc-c766-4062-844a-b619ae2a49a8",
        "Message": "One or several required parameters are missing or incorrect. An incorrect resource ID also raises this kind of error.",
        "Type": "param_error",
        "Date": 1741945960,
        "Errors": {
            "Currency": "UNSUPPORTED_CURRENCY"
        }
    }
    ```
  </Accordion>

  <Accordion title="400 - Country not supported">
    ```json theme={null}
    {
        "Id": "ada94e6f-6f54-4140-a45b-ff165ea2157f",
        "Message": "One or several required parameters are missing or incorrect. An incorrect resource ID also raises this kind of error.",
        "Type": "param_error",
        "Date": 1756384533,
        "Errors": {
            "Country": "UNSUPPORTED_COUNTRY"
        }
    }
    ```
  </Accordion>
</AccordionGroup>

<ResponseExample>
  ```json Local theme={null}
  {
      "AvailablePayoutMethods": [
          "LocalBankTransfer"
      ]
  }
  ```

  ```json International theme={null}
  {
      "AvailablePayoutMethods": [
          "InternationalBankTransfer"
      ]
  }
  ```
</ResponseExample>

<RequestExample>
  ```json REST theme={null}
  // GET has no body parameters
  ```
</RequestExample>
