Skip to main content
Convert sats to EUR. Send Bitcoin over Lightning, receive euros in a bank account via SEPA or on a Bringin debit card.

Two Ways to Off-ramp


Lightning Connection (BTC → EUR via SEPA)

A connection is a permanent link between a Lightning address and a bank account. Once active, every payment to the Lightning address is automatically converted to EUR and sent via SEPA. No further API calls needed.

Step 1: Get the API Key

Call POST /application/connect with the user’s email. Bringin onboards the user and sends the per-user api-key to your webhook callback.
Request
You receive the api-key via the /verification-status webhook once the user completes signup and KYC.
/verification-status webhook
See API Keys for the full onboarding flow.

Step 2: Create the Lightning Connection

Once you have the api-key, create the connection using the BringinLink API. 1. Create the connection
Request
Response (202)
2. Poll for the challenge ID
Wait for status: "PENDING" and grab the challengeId from the standing order.
Response
3. Confirm with SMS OTP
Request
After confirmation, the connection is ACTIVE. Every Lightning payment to the address triggers automatic conversion and SEPA payout. 4. List connections
Returns all connections for the user, including status and Lightning address details.

Debit Card Top-up (BTC → EUR on Card)

Send BTC to a deposit address — on-chain or via Lightning. Bringin converts to EUR and loads the balance onto the user’s debit card. Spend anywhere or withdraw at an ATM.

1. Get the BTC/EUR Rate

Request
Response
bringinPrice is the rate after fees — what the user actually gets.

2. Get a Deposit Address

Request
Response
The user sends sats to the Lightning address. Settlement is instant.
Amounts are in satoshis. 500 = 500 sats minimum, 500000 = 500,000 sats maximum.

3. Check Balance and Transactions

Request
Response
Balance is in EUR cents. 12992 = 129.92.

Webhooks

All webhooks fire to the callback URL you provided. Bringin appends the event path. See Webhooks for full payload details.

Authentication

All requests require an api-key header.

Getting Your API Key

Your users can grab their API key from the Bringin Dashboard under the Integrations tab. Click on the partner integration to reveal the key.

Key Types

Per-user keys have limited permissions — they can only push crypto for conversion. Safe to store on client devices.
HMAC signing is required only for POST /application/connect with a callback URL. See HMAC Signing.

Testing

See Sandbox for test credentials and setup.