Quick Start
Up and Running in Minutes
curl -X GET "https://api.wallyai.app/v1/accounts" \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-H "X-Tenant-ID: your-tenant-id"{
"data": [
{
"id": "acc_1a2b3c",
"name": "Main Checking",
"type": "depository",
"subtype": "checking",
"balance": {
"current": 8432.56,
"available": 8200.00,
"currency": "USD"
},
"institution": {
"id": "ins_abc123",
"name": "Chase Bank"
},
"last_synced": "2026-02-16T10:30:00Z"
}
],
"has_more": false,
"total_count": 1
}SDKs & Libraries
Official SDKs
Type-safe client libraries for your language of choice. All SDKs come with full TypeScript/type definitions, auto-retry, and pagination helpers.
Node.js / TypeScript
v2.3.0Python
v2.1.0Swift (iOS)
v1.8.0Kotlin (Android)
v1.6.0API Reference
Explore the API
Full REST API with predictable resource-oriented URLs, JSON request/response bodies, and standard HTTP response codes.
/v1/accounts/v1/accounts/:id/v1/accounts/linkAuthentication
Secure by Default
All API requests are authenticated using API keys. Use your secret key for server-side requests and publishable key for client-side integrations. All communication is encrypted over TLS 1.3.
- Bearer token authentication
- Scoped API keys with granular permissions
- Webhook signature verification
- IP allowlisting for enterprise
- SOC 2 Type II compliant
# Authentication Header
Authorization: Bearer sk_live_xxx...
# Tenant Identification
X-Tenant-ID: your-tenant-id
# Webhook Verification
X-Wally-Signature: sha256=xxx...
# Rate Limiting Headers (Response)
X-RateLimit-Limit: 1000
X-RateLimit-Remaining: 999
X-RateLimit-Reset: 1708099200Developer Resources
Documentation
Comprehensive guides, tutorials, and reference documentation.
API Playground
Test API endpoints interactively with our built-in sandbox.
Quickstart Guides
Get up and running in under 10 minutes with step-by-step guides.
Status Page
Real-time API status, uptime history, and incident reports.
Webhooks Guide
Learn how to receive real-time notifications for events.
Security & Compliance
Details on our security practices and compliance certifications.


