Navigation

BillerAPI Documentation

Connect your users to their billers. Retrieve bills, sync accounts, and automate billing workflows with a single API.

Try it now
curl https://sandbox.api.billerapi.com/billers \
  -H "X-Client-ID: demo_client_id" \
  -H "X-Client-Secret: demo_client_secret"

How BillerAPI works

1

Create a Link Session

Your server calls POST /link/token/create to get a link token for the Connect SDK.

2

User connects their biller account

The Connect SDK guides the user through selecting a biller and entering credentials.

3

Exchange for an access token

Your server exchanges the public token via POST /link/token/exchange.

4

Retrieve bills

Use the access token to fetch bills via GET /bills/get. Webhooks notify you of new bills.

Base URL

https://sandbox.api.billerapi.com

See Environments for production URLs.

Authentication

X-Client-ID + X-Client-Secret

See Authentication guide for details.