One shared credit pool
CSV exports, API pulls and MCP calls all spend the same monthly balance, and the API tells you where it went.
Who this is for
Anyone on a team plan who is about to be surprised by a balance. If two people use Boardwalk and one of them uses the API, this page is the one that prevents the surprise.
The rule
The worked case: your plan includes 500 Find Contact Info credits. A teammate turns on Find Contact Info for a CSV of 200 projects and 180 of them return email or phone. You then unlock 300 more projects over the API. Searching and viewing along the way cost nothing.
| Action | Surface | Records | Credits | Pool after |
|---|---|---|---|---|
| Month starts | — | — | — | 500 |
| Teammate CSV with Find Contact Info | Web app | 200 projects, 180 found | 180 | 320 |
| You unlock contacts over the API | API | 300 found | 300 | 20 |
| You search and view projects | API | any | 0 | 20 |
| Your next unlock | API | 1 found | 1 | 19 |
Check the balance before you assume it
Read the shared balance
curl 'https://api.boardwalkai.com/api/v1/account/credits' \
-H 'Authorization: Bearer bwk_live_YOUR_KEY'Response · HTTP 200
{
"data": {
"plan": "single_state",
"planDisplayName": "State",
"creditsLimit": 500,
"creditsUsed": 200,
"creditsRemaining": 300,
"periodStart": "2026-08-01",
"periodEnd": "2026-08-31",
"resetsAt": "2026-09-01T00:00:00+00:00",
"rateLimit": 60,
"rateLimitPer": "minute",
"isTeamPool": true,
"poolUserId": 8814
},
"meta": {
"requestId": "req_01K1QF3M0000EXAMPLE0001"
}
}The response shape on this page is the one the endpoint builds — the keys, their nesting and their types are asserted against the shipping code by a test. The numbers inside it are the scenario being walked through, not a measurement of the corpus.
isTeamPool: true is the field that matters here. It says the numbers you are reading are the team's, not yours, and that a colleague can move them while you are not looking. poolUserId identifies the pool so two seats can tell they are drawing on the same one.
What this means in practice
- Do not build a client that assumes its own balance is the whole story. Read
X-Credits-Remainingoff each response, or re-read the balance, rather than decrementing a local counter. - Before a large pull, price it with the free count endpoint — it reads the same pool and reports the same remaining figure.
- A
402is not a failure of your credentials. Your key is fine; the pool is empty.
Next
Ready to make a call?
A free Boardwalk trial includes API access, 50 record-export credits (search, CSV, MCP), and 5 Find Contact Info lookups. Counting, taxonomy, location lookups and the analytics plane cost nothing, so you can evaluate the data before you spend a credit.