Quickstart Guide
This guide will walk you through submitting your first balance check request and retrieving the results.Prerequisites
Before you begin, make sure you have:- A Rightfoot API key
- A tool to make HTTP requests (cURL, Postman, or your preferred programming language)
Step 1: Submit a Balance Check Request
Submit a batch of authorizers for balance checking:Response
You’ll receive a response with the batch ID:Save the
batch_id
- you’ll need it to retrieve the balance results.Step 2: Retrieve Balance Results
After processing (typically within 1 hour), retrieve the balance results using the batch ID:Response
Understanding Status Codes
Thebalance_status_code
indicates the outcome:
Code | Description |
---|---|
0 | Success - Balance retrieved |
3000 | No tax ID match |
3100 | No date of birth match |
3200 | Account closed |
3300 | Institution not supported |
3400 | No match with provided information |
9000 | Other error |
Important Notes
- Batch Size Limit: Maximum 1,000 authorizers per request
- SLA: Balance results typically available within 1 hour
- Idempotency: Identical requests within 24 hours return cached results
Using Webhooks (Optional)
If you provided awebhook_url
, you’ll receive a notification when processing completes:
Webhook delivery is attempted for up to 30 minutes with exponential backoff. Always implement polling as a fallback.