Skip to main content

Documentation Index

Fetch the complete documentation index at: https://apidocs.bridge.xyz/llms.txt

Use this file to discover all available pages before exploring further.

Overview

Card programs are required to generate statements and deliver them to cardholders at least monthly. Bridge provides an API to generate statements as PDFs on demand. Statements are viewable via the Bridge Dashboard. They are not currently available in the Stripe Dashboard.

Generating a statement

For the Stripe integration, use the Stripe cardholder and card IDs:
curl --request POST \
     --url https://api.bridge.xyz/v0/cardholders/<cardholderID>/cards/<cardID>/statements/<period>.pdf \
     --header 'Api-Key: <API Key>' \
     --header 'accept: application/pdf'
  • cardholderID — the Stripe cardholder ID (e.g. ich_1234)
  • cardID — the Stripe card ID (e.g. ic_1234)
  • period — the statement month in YYYY-MM format (for example, 2026-03)
The response is a PDF file.

Custom statement templates

Bridge provides a default statement template. If you’d like to customize the layout or branding, Bridge can work with you on a custom template:
  1. Bridge shares a base template you can modify.
  2. You return the modified template to Bridge for review.
  3. Once approved, Bridge applies it to future statement generation for your program.
Contact your Bridge account manager to get started with custom templates.