---
title: "Create donation checkout session"
method: POST
path: "/donations/checkout"
tags: ["Donations"]
---

# Create donation checkout session

`POST /donations/checkout`

Creates a Stripe checkout session for a one-time or recurring donation.

## Request body

- DonationCheckoutRequest
  - `email` string, email, required — Donor email address
  - `amount_cents` integer, required — Donation amount in minor units for the selected currency
  - `currency` 'usd' | 'eur' | 'brl' | 'inr' | 'pln' | 'try', required — Currency for the donation
  - `interval` 'month' | 'year', nullable, required — Billing interval (null for one-time donation)
  - `is_business` boolean — Whether the donation is from a business. When true, Stripe Checkout requires a billing address for tax invoicing. When false or omitted, billing address collection is left to Stripe.

## Response `200`

Success

- DonationCheckoutResponse
  - `url` string, uri, required — Stripe checkout URL to redirect the user to

## Other responses

- `400` — Bad Request - The request was malformed or contained invalid data
- `429` — Too Many Requests - You are being rate limited
- `500` — Internal Server Error - An unexpected error occurred

---

[API](https://skmtc.dev/fluxer/apis/fluxer-api.md) · [All operations](https://skmtc.dev/fluxer/apis/fluxer-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/fluxer/fluxer-api/revisions/d9c706133cc5/schema)
