> ## Documentation Index
> Fetch the complete documentation index at: https://doc-test-my.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# Methods API

> Fetch payment methods configured for your account using Razorpay APIs.

You can configure payment methods of your choice for collecting payments from your customers.

## Fetch Payment Methods

Send the following request to fetch a list of payment methods enabled for your account:

<Info>
  **Handy Tips**

  Provide only the API Key ID to send this request. Do not provide the API key secret.
</Info>

<CodeGroup>
  ```bash Request theme={null}
  curl -u [YOUR_KEY_ID] \
  - X GET https://api.razorpay.com/v1/methods \
  ```

  ```json Response theme={null}
  {
    "entity": "methods",
    "card": true,
    "debit_card": true,
    "credit_card": true,
    "prepaid_card": true,
    "card_networks": {
      "AMEX": 0,
      "DICL": 0,
      "MC": 1,
      "MAES": 0,
      "VISA": 1,
      "JCB": 0,
      "RUPAY": 0,
      "BAJAJ": 0
    },
    "card_subtype": {
      "consumer": 1,
      "business": 0,
      "premium": 0
    },
    "amex": false,
    "netbanking": [],
    "wallet": {
      "boost": true,
      "grabpay": true,
      "touchngo": true,
      "shopback": true,
      "mcash": true
    },
    "emi": false,
    "upi": false,
    "cardless_emi": [],
    "paylater": [],
    "google_pay_cards": false,
    "app": {
      "cred": 0,
      "twid": 0,
      "trustly": 0,
      "poli": 0,
      "sofort": 0,
      "giropay": 0
    },
    "gpay": false,
    "emi_types": {
      "credit": false,
      "debit": false
    },
    "debit_emi_providers": {
      "HDFC": 0,
      "KKBK": 0,
      "INDB": 0
    },
    "intl_bank_transfer": [],
    "fpx": {
      "PHBM": "Affin Bank",
      "PHBM_C": "AFFINMAX",
      "MFBB_C": "Alliance Bank (Business)",
      "MFBB": "Alliance Bank (Personal)",
      "ARBK": "AmBank",
      "ARBK_C": "AmBank",
      "AGOB": "AGRONet",
      "AGOB_C": "AGRONetBIZ",
      "BNPA_C": "BNP Paribas",
      "BIMB_C": "Bank Islam",
      "BIMB": "Bank Islam",
      "BKRM_C": "i-bizRakyat",
      "BKRM": "Bank Rakyat",
      "BMMB_C": "Bank Muamalat",
      "BMMB": "Bank Muamalat",
      "BKCH": "Bank Of China",
      "BSNA": "BSN",
      "CIBB_C": "CIMB Bank",
      "CIBB": "CIMB Clicks",
      "CITI_C": "Citibank Corporate Banking",
      "DEUT_C": "Deutsche Bank",
      "HSBC_C": "HSBC Bank",
      "HSBC": "HSBC Bank",
      "HLBB_C": "Hong Leong Bank",
      "HLBB": "Hong Leong Bank",
      "KFHO_C": "KFH",
      "KFHO": "KFH",
      "MBBE_C": "Maybank2E",
      "MBBE": "Maybank2E",
      "MB2U": "Maybank2U",
      "OCBC_C": "OCBC Bank",
      "OCBC": "OCBC Bank",
      "PBBE_C": "Public Bank",
      "PBBE": "Public Bank",
      "PBBN_C": "PB Enterprise",
      "RHBB_C": "RHB Bank",
      "RHBB": "RHB Bank",
      "SCBL_C": "Standard Chartered",
      "SCBL": "Standard Chartered",
      "UOVB": "UOB Bank",
      "UOVB_C": "UOB Regional"
    },
    "nach": false,
    "cod": false,
    "offline": false,
    "upi_intent": true,
    "upi_type": {
      "collect": 0,
      "intent": 0
    },
    "app_meta": []
  }
  ```
</CodeGroup>

### Next Steps

You can start creating payment requests using the [sample payloads](/docs/payments/payment-gateway/s2s-integration/payment-methods) for the payment methods of your choice.

To get additional payment methods enabled for your account, contact our [Razorpay Curlec Support Portal](https://curlec.com/support/).
