Financial Data
Get Annual IRA Contribution Limits
Retrieve the annual contribution limits for the specified IRA account type and year.
GET
/
ira-limits
/
{account_type}
Path
Query
curl --request GET \
--url https://sandbox.featherhq.com/ira-limits/{account_type}
{
"account_type": "<string>",
"annual_limit_catchup": 123,
"annual_limit_individual": 123,
"year": 123
}
This endpoint is currently under migration and will be available soon
Path Parameters
account_type
enum<string>
requiredThe type of IRA account for which to retrieve annual contribution limits.
Available options:
IRA
, ROTH_IRA
, CATCHUP_IRA
, CATCHUP_ROTH_IRA
Query Parameters
year
integer
Optional. The year for which to retrieve annual contribution limits. Defaults to the current financial year.
Response
200 - application/json
account_type
string
The type of IRA account.
annual_limit_catchup
number
The annual catch-up contribution limit (if applicable).
annual_limit_individual
number
The annual contribution limit for an individual.
year
integer
The year for which the contribution limits are provided.
curl --request GET \
--url https://sandbox.featherhq.com/ira-limits/{account_type}
{
"account_type": "<string>",
"annual_limit_catchup": 123,
"annual_limit_individual": 123,
"year": 123
}