Share Links API
Create secure, time-limited share links to give external parties read-only access to deal summaries. Links can be password-protected and expire automatically.
Share links expose deal summary data without requiring API authentication. Use password protection and short expiration times for sensitive deals. Revoke links immediately when access is no longer needed.
Create Share Link
List Share Links
Revoke Share Link
Public View
Access a shared deal summary using the share token. No API authentication is required. If the link is password-protected, pass the password via the X-Share-Password header.
| Name | Type | Required | Description |
|---|---|---|---|
| token | string | Required | The share token from the link URL |
| X-Share-Password | string | Optional | Password for protected links (passed as a header) |
Request (no password)
curl https://api.banklyze.com/v1/share/sh_a1b2c3d4e5f6g7h8i9j0Request (with password)
curl https://api.banklyze.com/v1/share/sh_a1b2c3d4e5f6g7h8i9j0 \
-H "X-Share-Password: securepass123"200 OK
{
"data": {
"business_name": "Acme Trucking LLC",
"status": "under_review",
"health_score": 72.5,
"grade": "B",
"risk_factors": [
"4 NSF transactions in January",
"Revenue trending downward (-8% MoM)"
],
"summary": {
"total_deposits": 245000.00,
"total_withdrawals": 218500.00,
"average_daily_balance": 12450.00,
"statement_count": 3,
"date_range": {
"start": "2025-11-01",
"end": "2026-01-31"
}
},
"recommendation": {
"decision": "conditional_approval",
"max_funding": 50000.00,
"notes": "Conditional on updated January bank statement showing NSF resolution."
},
"shared_at": "2026-03-10T14:30:00Z",
"expires_at": "2026-03-13T14:30:00Z"
}
}The public view returns a curated subset of deal data. Sensitive fields like raw transaction data, internal notes, and full financial details are excluded from shared views.