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

# Payment Binding

> Binding-based payments for recurring transactions and saved payment method workflows.

<Info>
  This feature is exclusive to a select number of partners on demand.
</Info>

Flouci Advanced APIs allow merchants to create **binding-based payment flows** where customers link their Flouci account or saved card once, then pay with a single tap on subsequent transactions — no redirects except for 3DS, no re-entering credentials.

## How it works

<Steps>
  <Step title="Create a binding">
    Make a first payment with a unique `client_id`. The customer completes checkout normally, and their payment method is saved for future use. See [Create Binding](/api-reference/advanced-payment-flow/create-binding).
  </Step>

  <Step title="Pay with the binding">
    For subsequent transactions, send the `binding_id`, `client_id`, and `cvc` along with the payment amount. No checkout redirect needed (except for 3DS). See [Pay with Binding](/api-reference/advanced-payment-flow/confirm-binding).
  </Step>

  <Step title="Verify the payment">
    Use the standard [Verify Payment](/api-reference/verify-transaction) endpoint to confirm the transaction status.
  </Step>
</Steps>

## Use cases

<CardGroup cols={2}>
  <Card title="Recurring payments" icon="repeat">
    Subscriptions, memberships, and scheduled billing where the customer pays on a regular cycle.
  </Card>

  <Card title="One-click checkout" icon="bolt">
    Returning customers pay instantly without re-entering payment details or being redirected.
  </Card>

  <Card title="In-app purchases" icon="mobile">
    Native mobile experiences where payments happen seamlessly within your app.
  </Card>

  <Card title="Saved payment methods" icon="credit-card">
    Let customers save their preferred payment method for faster future transactions.
  </Card>
</CardGroup>
