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

# CVV-Less Card Payments

> Offer CVV-less card payments on Cashfree for returning customers with tokenised cards, reducing checkout steps while staying compliant with card network rules.

CVV-less payments allow customers to complete transactions using saved card details without entering the Card Verification Value (CVV).
This enhances the user experience by streamlining the checkout process while maintaining transaction security through tokenisation and other protective measures.

CVV-less payments support tokenised transactions using **Visa**, **Mastercard**, **RuPay**, **American Express (Amex)**, and **Diners Club** cards.

<Tip>
  CVV-less boosts success rates by approximately 5%.
</Tip>

<Frame caption="CVV-less experience on Cashfree Checkout">
  <img src="https://mintcdn.com/cashfreepayments-d00050e9/vGHAFJp1ZDsFJV2e/static/images/pg/cvv-less-2.gif?s=b262c231fb13e39e7e6d5c8f31118f4b" alt="Description" style={{ width: '560px' }} width="864" height="864" data-path="static/images/pg/cvv-less-2.gif" />
</Frame>

## Benefits and security considerations

* **Broader network support:** Available across Visa, Mastercard, Amex, RuPay, and Diners networks.

* **Higher conversion and success rates:** CVV-less payments for tokenised cards typically improve success rates by approximately 5%.

* **Enabled from day 0:** Enabled by default across all networks for tokenised cards from day 0.

* **CVV-less indicator:** Saved cards display a **No CVV Required** label during checkout on the Cashfree Checkout.

  <img src="https://mintcdn.com/cashfreepayments-d00050e9/vGHAFJp1ZDsFJV2e/static/images/pg/cvv-less-1.png?fit=max&auto=format&n=vGHAFJp1ZDsFJV2e&q=85&s=d363d80068f372f3ecd183cdf75bcc48" alt="" width="776" height="202" data-path="static/images/pg/cvv-less-1.png" />

* **Faster checkout and reduced friction:** Customers do not need to remember or enter CVV details for saved cards.

* **Secure and compliant:** Transactions are protected by tokenisation, OTP validation, 3D Secure authentication, and real-time risk checks. Fully compliant with PCI DSS, RBI regulations, and card network guidelines.

## Using CVV-less payments with Cashfree payment gateway

CVV-less payments integrate seamlessly with Cashfree’s infrastructure. Depending on your integration method, minimal changes may be required.

### For merchants on seamless API integration

For saved card transactions across supported networks, the `card_cvv`  field is optional by default. To enable CVV-less payments, exclude this field from your payment request.

**Sample [Order Pay API](/api-reference/payments/latest/payments/pay) request**

<CodeGroup>
  ```javascript For external card tokens theme={"dark"}
  curl --request POST \
    --url https://sandbox.cashfree.com/pg/orders/sessions \
    --header 'Content-Type: application/json' \
    --header 'x-api-version: <x-api-version>' \
    --data '{
    "payment_session_id": "session__CvcEmNKDkmERQrxnx39ibhJ3Ii034pjc8ZVxf3qcgEXCWlgDDlHRgz2XYZCqpajDQSXMMtCusPgOIxYP2LZx0-05p39gC2Vgmq1RAj--gcn",
    "payment_method": {
      "card": {
        "channel": "link",
        "card_number": "4111111111111111",
        "card_expiry_mm": "03",
        "card_expiry_yy": "26",
        "cryptogram": "AQBBBBBBZatIlaIAmWKSghwBBBB=",
        "card_cvv": "900",  // Optional
        "token_requestor_id": "22457512314",
        "card_holder_name": "Tushar Gupta",
        "card_display": "3243"

      }
    }
  }'
  ```

  ```javascript For Cashfree tokens theme={"dark"}
  curl --request POST \
    --url https://sandbox.cashfree.com/pg/orders/sessions \
    --header 'Content-Type: application/json' \
    --header 'x-api-version: <x-api-version>' \
    --data '{
    "payment_session_id": "session__CvcEmNKDkmERQrxnx39ibhJ3Ii034pjc8ZVxf3qcgEXCWlgDDlHRgz2XYZCqpajDQSXMMtCusPgOIxYP2LZx0-05p39gC2Vgmq1RAj--gcn",
    "payment_method": {
      "card": {
        "channel": "link",
        "instrument_id": "54deabb4-ba45-4a60-9e6a-9c016fe7ab10",
        "card_cvv": "900" // Optional
      }
    }
  }'
  ```
</CodeGroup>

**Update your checkout UI**

Update your checkout interface to stop collecting CVV for saved card payments.

* For tokenised cards on Visa, Mastercard, Amex, RuPay, and Diners, remove the `card_cvv` field from the card object.

<Note>
  CVV input is optional only for tokenised card transactions (transactions using saved cards). For plain card or guest checkout transactions, CVV input is mandatory.
</Note>

### For merchants using Cashfree checkout UI

Cashfree enables CVV-less payments by default for all saved card transactions across supported networks. You don't need to configure anything additionally.

## Frequently asked questions

<AccordionGroup>
  <Accordion title="What is a CVV-less card payment?">
    A CVV-less card payment allows customers to complete a card transaction without entering the Card Verification Value (CVV)—a 3- or 4-digit security code typically required at checkout.
  </Accordion>

  <Accordion title="How is the transaction secured without CVV?">
    CVV-less transactions maintain security through 3D Secure (3DS), OTP (One-Time Password) authentication, secure encryption of card data, and additional risk checks such as real-time fraud detection.
  </Accordion>

  <Accordion title="Are CVV-less payments compliant with regulatory guidelines (like RBI or PCI DSS)?">
    Yes. CVV-less payments are compliant as long as they involve tokenised cards and adhere to the card network and RBI guidelines for authentication.
  </Accordion>

  <Accordion title="Why should a merchant allow CVV-less payments?">
    CVV-less payments reduce friction at checkout, improving conversion rates and enhancing customer experience, especially for a returning user base in mobile-first markets.
  </Accordion>

  <Accordion title="What are the pre-requisites for CVV-less payments?">
    CVV-less card payment experience is available only for tokenised cards, meaning the card is securely saved with a merchant.
  </Accordion>

  <Accordion title="Will offering CVV-less payments increase my payment success rates?">
    Yes, the CVV-less card payment feature improves success rates by approximately 5% on average.
  </Accordion>

  <Accordion title="Which card networks support CVV-less payments?">
    CVV-less flow supports tokenized payments on Visa, Mastercard, RuPay, Amex, and Diners.
  </Accordion>

  <Accordion title="Is CVV-less payment possible via Payment Links and Payment Forms?">
    Yes. Both Payment Links (PL) and Payment Forms (PF) support CVV-less payments.
  </Accordion>

  <Accordion title="Is CVV-less by default enabled?">
    Yes. From day 0, merchants can enable CVV-less payments for their customers (only on tokenised cards).
  </Accordion>
</AccordionGroup>

<div class="hidden" data-table-of-contents="bottom">
  <p class="mt-4 font-medium flex items-center gap-2 related-docs-heading">
    <svg width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" aria-hidden="true" class="w-4 h-4">
      <path d="M3 4h7a2 2 0 0 1 2 2v13a2 2 0 0 0-2-2H3z" />

      <path d="M21 4h-7a2 2 0 0 0-2 2v13a2 2 0 0 1 2-2h7z" />
    </svg>

    <span>Related topics</span>
  </p>

  <ul>
    <li><a href="/docs/api-reference/payments/latest/payments/pay">Order Pay API</a></li>
  </ul>
</div>
