Skip to main content
This guide gets you from zero to a working deposit flow. You will install the SDK, set up a minimal signer endpoint, and trigger your first transfer.

Integrate with an AI agent

If you want an agent to scaffold this flow for you, use the AI Agent guide or paste this URL directly into Cursor, Claude Code, or your coding agent:

1. Install the SDK

2. Create a signer endpoint

Add a server route that signs payment requests. This minimal Express example covers the essentials:
Set your environment variables:
See Build Your Signer Endpoint for the full implementation with validation, security, and a Python equivalent.

3. Trigger the transfer

What’s next

You now have a working deposit flow. To go to production:
1

Generate a production key pair

Key Generation. Create ECDSA P-256 keys and store the private key in a secrets manager.
2

Register your merchant account

Merchant Registration. Send your public key to Blink.
3

Harden your signer

Signer Endpoint. Add request validation, authentication, rate limiting, and CORS.
4

Handle errors gracefully

Error Handling. Use DepositError codes and getDisplayMessage() in your UI.
5

Run the production checklist

Production Checklist. Verify every item before going live.