# Payment Methods

## Search Payment Methods

<mark style="color:green;">`GET`</mark> `/v1/payment_methods`

**Headers**

| Name         | Value               |
| ------------ | ------------------- |
| x-api-key    | `<your api key>`    |
| x-api-secret | `<your api secret>` |

**Response**

{% tabs %}
{% tab title="200" %}

```json

{
    {
            "id": "10JKVpceXk",
            "status": "ENABLED",
            "type": "CARD",
            "country_id": "ALL",
            "currency": "USD",
            "max_amount": 40000,
            "min_amount": 0.5,
            "network": null,
            "cash_provider": null,
            "crypto_provider": null,
            "allow_recurrent_payment": true
    },
    {
            "id": "qacV3z31cz",
            "status": "ENABLED",
            "type": "CRYPTO_ONCHAIN",
            "country_id": "ALL",
            "currency": "USDT",
            "max_amount": 100000,
            "min_amount": 0.1,
            "network": {
                "id": "TRON",
                "name": "Tron"
            },
            "cash_provider": null,
            "crypto_provider": null,
            "allow_recurrent_payment": false
    },
    {
            "id": "7tfPofN2DL",
            "status": "ENABLED",
            "type": "CRYPTO_ONCHAIN",
            "country_id": "BRA",
            "currency": "USDT",
            "max_amount": 100000,
            "min_amount": 0.1,
            "network": {
                "id": "POLYGON",
                "name": "Polygon"
            },
            "cash_provider": null,
            "crypto_provider": {
                "id": "LEMON",
                "name": "Lemon"
            },
            "allow_recurrent_payment": false
        },
        {
            "id": "vJKtkYs8Vf",
            "status": "ENABLED",
            "type": "BANK_TRANSFER",
            "country_id": "ARG",
            "currency": "ARS",
            "max_amount": 10000000,
            "min_amount": 0,
            "network": null,
            "cash_provider": null,
            "crypto_provider": null,
            "allow_recurrent_payment": false
        }
}
```

{% endtab %}

{% tab title="400 | 404 | 500" %}

```json
{
    "messages": [
        "error message"
    ],
    "code": "error code"
}
```

{% endtab %}
{% endtabs %}

#### Payment method types

`BANK_TRANSFER | CRYPTO_ONCHAIN | CASH | CARD | PIX`

#### Error codes

`WRONG_INPUT | NOT_FOUND | INTERNAL_SERVER_ERROR`
