Skip to Content

Configure PartnerID

This section is for teams looking to partner with Lombard and integrate the Lombard SDK. A Partner ID allows your application to bypass CAPTCHA when generating BTC deposit addresses.


What is a Partner ID?

A Partner ID is a unique identifier for your integration that enables:

CapabilityDescription
CAPTCHA BypassYour users won’t need to solve CAPTCHAs when generating deposit addresses
Deposit AttributionAll BTC deposits through your integration are tracked to your organization
Partner AnalyticsAccess to dashboards showing your integration’s deposit volume (coming soon)
Economic IncentivesEligibility for fee sharing and partner rewards (coming soon)

Getting a Partner ID

Step 1: Submit Your Interest

Email partnerships@lombard.finance with basic information about your integration.

Step 2: Quick Review and Partner ID Submission

Our team reviews submissions hourly. We’ll reach out via email or Telegram with your Partner ID. After our conversation, we’ll issue your Partner ID — typically within a few hours. You’ll receive it via email or Telegram.


Configuration

import { createConfig, Env } from '@lombard.finance/sdk'; const config = createConfig({ env: Env.prod, partner: { partnerId: 'YOUR_PARTNER_ID', }, providers: { evm: () => window.ethereum, }, });

Testing

For development, use test as the Partner ID to bypass captcha:

import { createConfig, Env } from '@lombard.finance/sdk'; const config = createConfig({ env: Env.testnet, partner: { partnerId: 'test', }, providers: { evm: () => window.ethereum, }, });

Frequently Asked Questions

How long does it take to get a Partner ID?

After our intro conversation, Partner IDs are issued within a few hours.

Is there a cost or commercial agreement required?

No. Partner IDs are issued at no cost. We may discuss commercial partnerships for larger integrations, but it’s not required.

Can I have multiple Partner IDs?

Yes. If you have multiple products or integrations, request a separate Partner ID for each so you can track attribution independently.

What if I’m just experimenting?

Use 'test' on testnet. You only need a real Partner ID when you’re ready for production.


Questions?

Last updated on