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

# Payouts

> Set up your bank accounts to recieve payouts.

export const Badge = ({type, size, children}) => {
  const normalizeSize = s => ['xs', 'sm', 'lg'].includes(s) ? s : 'base';
  const normalizeType = s => {
    return ['info', 'success', 'error', 'warning', 'secondary'].includes(s) ? s : 'default';
  };
  const sizes = {
    xs: {
      fontSize: '0.75rem',
      fontWeight: 500,
      padding: '0px 6px'
    },
    sm: {
      fontSize: '0.875rem',
      fontWeight: 500,
      padding: '0px 8px'
    },
    lg: {
      fontSize: '1.125rem',
      fontWeight: 600,
      padding: '0px 8px'
    },
    base: {
      fontSize: '1rem',
      fontWeight: 500,
      padding: '0px 8px'
    }
  };
  const colors = {
    default: {
      backgroundColor: '#cff5bf',
      color: '#14761c'
    },
    success: {
      backgroundColor: '#cff5bf',
      color: '#14761c'
    }
  };
  const colorClass = colors[normalizeType(type)];
  const sizeClass = sizes[normalizeSize(size)];
  return <div style={{
    ...colorClass,
    ...sizeClass,
    marginLeft: '4px',
    width: 'min-content',
    display: 'inline-block',
    borderRadius: '4px'
  }}>
      {children}
    </div>;
};

## Adding a bank account

You can add a bank account in the [Dashboard](https://dashboard.yorlet.com/settings/bank_accounts). You can only have one active bank account for each currency. If you accept a payment in a currency you don’t have a bank account for, we will convert the amount to your default currency.

## Timing

Funds are available to payout 2 business days after the successful capture of a payment.

## Instant Payouts <Badge type="success" size="lg">Beta</Badge>

If you need your funds sooner than the regular payout timing, you can use Instant Payouts. With Instant Payouts, you can receive funds within 30 minutes, including on weekends and holidays.

<Note>
  There is an additional charge for using Instant Payouts.
</Note>

## Request early access

Instant Payouts is currently in beta, if you would like early access please contact sales.
