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

# DraftKings Style Deposit

> Standard sports-book style deposit where the customer enters a custom amount

## Overview

A DraftKings-style deposit presents the customer with an input form where they can enter any amount they'd like to deposit. This is the standard experience used by sports books and gaming platforms.

## How It Works

1. You create a checkout session with `type: "deposit"` and no `fixed_amount_cents`.
2. The customer is redirected to the Soap-hosted checkout page.
3. The customer enters their desired deposit amount and selects a payment method.
4. Upon completion, a webhook is fired and the customer is redirected back to your app.

## API Request

```bash theme={null}
curl -X POST 'https://api-sandbox.paywithsoap.com/api/v1/checkouts' \
--header 'Content-Type: application/json' \
--header 'Authorization: YOUR_API_KEY' \
--data '{
    "customer_id": "cus_vi57KegYgcRqcGHqip8q6UZiqtrwMT870",
    "type": "deposit",
    "experience": "web",
    "return_url": "https://myapp.com/wallet"
}'
```

## Key Parameters

| Parameter     | Required | Description                                     |
| ------------- | -------- | ----------------------------------------------- |
| `customer_id` | Yes      | The customer's unique identifier                |
| `type`        | Yes      | Must be `"deposit"`                             |
| `experience`  | No       | `"web"` or `"webview"`                          |
| `return_url`  | No       | Where to redirect the customer after completion |

## When to Use

* Your platform lets the customer choose how much to deposit
* Standard gaming / sports-book deposit flows
* Any scenario where the deposit amount is not predetermined

<Card title="← Back to Create Checkout" icon="arrow-left" href="/api-reference/api-v1/checkouts/create">
  View the full API reference for creating checkouts.
</Card>
