Documentation
REST API. JSON in, JSON out. One Bearer token per request.
Quickstart
- Sign up free — magic-link, no credit card.
- Create an API key in your dashboard.
- Hit any endpoint with
Authorization: Bearer <your-key>.
# Find Virginia CUs > $1B in assets
curl -H "Authorization: Bearer $NCUA_API_KEY" \
"https://api.cu-2.com/v1/credit-unions?state=VA&totalAssets=gte:1000000000"Full API reference
Interactive Scalar UI rendered from our OpenAPI 3.0 spec — request/response shapes, query parameters, schemas.
Open API reference →Spec available at https://api.cu-2.com/openapi.json.
Endpoints
- GET
/v1/credit-unions— Search/list with filters + pagination - GET
/v1/credit-unions/{cuNumber}— Single CU detail - GET
/v1/credit-unions/{cuNumber}/financials— Quarterly financials grouped by FS220 table - GET
/v1/credit-unions/{cuNumber}/history— Name + merger history - POST
/v1/query— Advanced AND/OR query builder - GET
/v1/meta/account-descriptions— Data dictionary - GET
/v1/meta/cycle-dates— Available cycle dates - GET
/v1/meta/health— Liveness + data freshness
Recipes
Common queries, copy-pasteable.
- Find the largest CUs in your state
- Track delinquency over 8 quarters · coming soon
- Peer-group benchmark for a single CU · coming soon
- Detect M&A candidates by financial signal · coming soon
- Compute custom ratios from raw FS220 accounts · coming soon