Consumerfinance
Consumerfinance is the Consumer Financial Protection Bureau data API for accessing public consumer finance information.
- Base URL:
https://api.consumerfinance.gov:443 - Auth:
bearer(pass your key via theapiKeyinput)
Operations
getdatasets— GET /data — Get a list of all datasets.getdatasethmda— GET /data/hmda — Get metadata for this dataset.getconcepthmda— GET /data/hmda/concept/{concept} — Get information about a particular concept in this dataset.queryslicehmda— GET /data/hmda/slice/{slice} — Query a slice in this dataset.getslicemetadatahmda— GET /data/hmda/slice/{slice}/metadata — Get the metadata for a slice in this dataset.getdataset— GET /data/{dataset} — Get metadata about a dataset.
Inputs
apiKey— your consumerfinance API keyoperation— one of the operations above- path parameters when an operation's path contains
{...} query— optional JSON object of query paramsbody— JSON object for create/update ops
Example
operation: getdatasets
apiKey: <your key>
Publishes
The keys a later task may reference as {{taskName.key}}. Referencing anything not listed here resolves to nothing at run time.
erroroperationresultstatus
Input Properties
Every property this tool accepts, from its own tool.iml.
| Property | Type | Required | Default | Description |
|---|---|---|---|---|
apiKey |
string | yes | — | DEPRECATED — bind an API Key credential to the task with credentialName instead. A key pasted here is stored in the workflow definition in clear and appears in every export of it. Still honoured for workflows built before the change. |
operation |
string | yes | — | One of: getdatasets, getdatasethmda, getconcepthmda, queryslicehmda, getslicemetadatahmda, getdataset |
concept |
string | no | — | Path parameter concept (required by some operations). |
dataset |
string | no | — | Path parameter dataset (required by some operations). |
slice |
string | no | — | Path parameter slice (required by some operations). |
query |
string | no | — | Optional query params as a JSON object string, e.g. {"limit": 10}. |