What you’ll do
By the end of this guide you’ll have an access token and a successful response from the Dwolla sandbox — the foundation for every other API call. From there, pick a funds flow to build your real integration.Create a sandbox account
The Dwolla sandbox is a complete, free replica of production. You only need a valid email address to sign up.Need more detail? See the Testing in the Sandbox guide.
Create your sandbox account
You’ll be prompted to verify your email, then redirected to the sandbox dashboard.
Grab your API key and secret
From the sandbox dashboard, navigate to Applications to find your
client_id and client_secret. Dwolla automatically creates an application for your sandbox account along with a $5,000 test balance.Request an access token
Exchange your credentials for an access token by POSTing to A successful response returns a JSON payload with an
/token with grant_type=client_credentials. The Authorization header uses HTTP Basic auth: Base64(client_id:client_secret).access_token, expiration, and scope. Tokens are valid for one hour — request a new one when yours expires.Response
Make your first API call
Use the access token as a Bearer credential to call the Root endpoint. The response contains the That
_links you’ll use to interact with the rest of the API — most importantly, your account URL.Response
account href is your Platform Account — you’ll reference it when creating funding sources, initiating transfers, and listing activity.You did it
You’ve authenticated against the Dwolla API and made your first request. Next, pick the funds flow that matches your use case and start building.Send Money
Disburse funds (payouts) to your end users’ bank accounts.
Receive Money
Pull funds (pay-ins) from your end users’ bank accounts.
Transfer Between Users
Facilitate transfers between parties on your platform — B2B, B2C, or C2B.
Me-to-Me Transfer
Move money between two bank accounts belonging to the same user.
Going deeper
Authentication concepts
OAuth 2.0 client credentials flow, token lifecycle, and request headers.
Customer types
Choose the right customer types for your end users.
Webhooks
Subscribe to events so your app stays in sync with the API.
SDKs & tools
Official client libraries for Node, Python, PHP, Ruby, Kotlin, and C#.