(institutions)
Lookup ACH and wire participating financial institutions. We recommend using this endpoint when an end-user enters a routing number to confirm their bank or credit union.
- search_institutions - Search institutions
Search for institutions by their routing number or name.
To use this endpoint from the browser, you'll need to specify the /fed.read
scope when generating a token.
import moov
from moov import Moov
import os
s = Moov(
gateway_auth=os.getenv("MOOV_GATEWAY_AUTH", ""),
)
res = s.institutions.search_institutions(request={
"rail": moov.Rail.WIRE,
"name": "Farmers",
"routing_number": "044112187",
"state": "IA",
"limit": 499,
})
if res is not None:
# handle response
pass
Parameter | Type | Required | Description |
---|---|---|---|
request |
models.SearchInstitutionsRequest | ✔️ | The request object to use for the request. |
retries |
Optional[utils.RetryConfig] | ➖ | Configuration to override the default retry behavior of the client. |
models.SearchInstitutionsResponse
Error Type | Status Code | Content Type |
---|---|---|
models.SDKError | 4XX, 5XX | */* |