---
title: "Auto Loan API"
description: "Build with daily-updated auto loan APR data from 3,700+ credit unions. Query new, used, and CPO vehicle rates by term, type, and state via one API."
canonical: "https://rateapi.dev/auto-loan-rates"
last-updated: "2026-09-27"
source: "https://rateapi.dev/llms.txt"
---

# Auto Loan API for Credit Union Rate Data

Query daily-updated auto loan rates by term, vehicle condition, type, and state. Structured credit union offers are ranked by APR, not affiliate revenue, for car buying platforms, dealership software, and personal finance apps.

Get a Free API Key [API Documentation](https://api.rateapi.dev/)

Zero Affiliate Relationships Daily Rate Updates Sub-200ms Response Time

Last updated: September 26, 2026

[Home](https://rateapi.dev/) / Auto Loan Rates

RateAPI provides auto loan rate data from 3,700+ credit unions across the United States, updated daily. Query by term length (36-84 months), vehicle condition (new, used, certified pre-owned), vehicle type, and state. Zero affiliate relationships - rates ranked by true cost.

> Source: [RateAPI.dev/auto-loan-rates](https://rateapi.dev/auto-loan-rates) (verified September 26, 2026)

## What Are Auto Loan Rates?

**Auto loan rates** are the annual percentage rate (APR) charged by lenders for vehicle financing. Rates vary based on vehicle condition (new vs used), loan term (36-84 months), vehicle type, and credit profile. Credit unions consistently offer rates 1-2% below banks and 2-4% below dealer financing.

**Current rate ranges as of September 26, 2026:**

- **New vehicles (60 months):** 5.49% - 7.99% APR
- **Used vehicles (60 months):** 6.49% - 9.99% APR
- **Electric vehicles (60 months):** 4.99% - 7.49% APR
- **Certified pre-owned (48 months):** 5.99% - 8.49% APR

Source: RateAPI database of 3,700+ auto loan products from credit unions in all 50 states, verified September 26, 2026.

For API concepts and integration examples, read the [auto loan rate API guide](https://rateapi.dev/what-is-auto-loan-rate-api) . For aggregate trends and national medians, see the [auto loan rate benchmark](https://rateapi.dev/auto-loan-rate-benchmark) . Comparing financing across products? RateAPI also tracks [mortgage rates](https://rateapi.dev/mortgage-rates) , [HELOC rates](https://rateapi.dev/heloc-rates) , and [personal loan rates](https://rateapi.dev/personal-loan-rates) from the same credit unions.

**Looking for recreational-vehicle rates?** RateAPI tracks them as their own categories, priced separately from cars: [RV loan rates](https://rateapi.dev/rv-loan-rates) (5,500+ rates), [boat & marine rates](https://rateapi.dev/boat-loan-rates) (1,800+ rates), and [motorcycle rates](https://rateapi.dev/motorcycle-loan-rates) (3,100+ rates) from 900–1,600+ credit unions each.

3,700+

Auto Loan Products

Daily

Rate Updates

<200ms

Response Time

50 States

Coverage

Lower Rates

## Why Credit Unions for Auto Loans?

Credit unions consistently offer lower auto loan rates than banks and dealerships. Because they are member-owned, not-for-profit institutions, credit unions return profits to members through lower rates rather than paying shareholders or dealer networks.

### 1-2% Lower Than Banks

Credit unions offer 1-2% lower APR on average vs traditional banks. On a $30,000 vehicle, this saves $1,500-$2,000 over a 60-month loan.

### 2-4% Lower Than Dealers

Dealer financing includes markup (1-3% added to the buy rate). Credit unions eliminate this markup entirely, saving $2,000-$3,000 on typical loans.

Real Example

**Navy Federal Credit Union:** 5.49% APR for new 60-month auto loans **Typical dealership financing:** 7.99% APR for same vehicle **Savings:** $2,850 over loan term on $30,000 vehicle

API Features

## Auto Loan API Capabilities

Flexible queries for every vehicle financing scenario

### Get New Vehicle Financing Recommendations

Query the decisions endpoint for intelligent, ranked recommendations based on your criteria.

cURL New vehicle - 60 month term

Copy

curl - X POST "https://api.rateapi.dev/v1/decisions" \

- H "Authorization: Bearer YOUR_API_KEY" \

- H "Content-Type: application/json" \

- d '{

"decision_type" : "financing" ,

"context" : { "geo" : { "state" : "CA" } } ,

"product_request" : {

"product_type" : "auto_loan" ,

"intent" : "purchase" ,

"amount" : 30000 ,

"term_months" : 60 ,

"vehicle_condition" : "new"

}

} '

Returns ranked credit union offers by true cost (APR), monthly payment calculations, and savings vs market average.

### Query Used Vehicle Rates

Specify vehicle condition and year for accurate used car financing rates.

cURL Used vehicle query

Copy

curl - X POST "https://api.rateapi.dev/v1/decisions" \

- H "Authorization: Bearer YOUR_API_KEY" \

- H "Content-Type: application/json" \

- d '{

"decision_type" : "financing" ,

"context" : { "geo" : { "state" : "TX" } } ,

"product_request" : {

"product_type" : "auto_loan" ,

"intent" : "purchase" ,

"amount" : 25000 ,

"term_months" : 48 ,

"vehicle_condition" : "used" ,

"vehicle_year" : 2022

}

} '

Used car rates vary by vehicle age. Specify vehicle_year for the most accurate rate matching.

### Auto Loan Refinance Analysis

Include your current rate to see potential savings from refinancing.

cURL Refinance comparison

Copy

curl - X POST "https://api.rateapi.dev/v1/decisions" \

- H "Authorization: Bearer YOUR_API_KEY" \

- H "Content-Type: application/json" \

- d '{

"decision_type" : "financing" ,

"context" : { "geo" : { "state" : "FL" } } ,

"product_request" : {

"product_type" : "auto_loan" ,

"intent" : "refinance" ,

"amount" : 20000 ,

"term_months" : 48

} ,

"current_offer" : {

"apr" : 8.99

}

} '

Pass current_offer.apr to calculate exact monthly and total savings from refinancing to a lower rate.

### API Response Structure

Rich, actionable data including ranked offers, payment calculations, and savings analysis.

{} response.json

Copy

{

"summary" : {

"recommended_action" : "shop_providers" ,

"confidence" : 0.92 ,

"key_findings" : [

"5 credit unions below market average" ,

"Best rate: 5.49% APR (Navy Federal)" ,

"Potential savings: $2,850 vs average rate"

] ,

"estimated_savings" : {

"monthly" : 47 ,

"total" : 2850

}

} ,

"actions" : [ {

"type" : "shop_providers" ,

"offers" : [

{

"credit_union_name" : "Navy Federal Credit Union" ,

"apr" : 5.49 ,

"rate" : 5.49 ,

"term_months" : 60 ,

"monthly_payment" : 568.32 ,

"total_interest" : 4099.20 ,

"vehicle_condition" : "new"

} ,

{

"credit_union_name" : "PenFed Credit Union" ,

"apr" : 5.74 ,

"rate" : 5.74 ,

"term_months" : 60 ,

"monthly_payment" : 575.84 ,

"total_interest" : 4550.40 ,

"vehicle_condition" : "new"

}

]

} ]

}

Use Cases

## Who Uses Auto Loan Rate APIs?

### Car Buying Platforms

Show real-time financing rates on vehicle listings. Users see total cost (price + financing) before visiting dealer. Examples: Carvana, Shift, Vroom-type applications.

### Auto Dealership Software

F&I office tools that show competitive credit union rates. Helps dealers match or beat credit union offers to close more deals.

### Personal Finance Apps

Monitor auto loan rates and alert users when refinancing saves $50+/month. Track payment optimization opportunities.

### Comparison Tools

Build unbiased auto loan rate comparison tools. Unlike affiliate sites that show paid advertisers first, provide rankings based on true cost.

### Credit Union Portals

Show members where their rate ranks vs market. Encourage refinancing when rates drop or member credit improves.

### AI Agents and Chatbots

Answer vehicle financing questions with real data. Show users the best rates for their specific vehicle and location.

Each of these teams pulls the same live data through the [auto loan rate API](https://rateapi.dev/what-is-auto-loan-rate-api) — one JSON request returns rates, APR, and terms from every credit union we track.

Comparison

## RateAPI vs Alternatives for Auto Loans

| Feature |  RateAPI |  Affiliate Aggregators |  Dealer APIs |
| **Data Source** |  3,700+ credit unions |  Paid advertisers |  Single dealer network |
| **Bias** |  Zero affiliate relationships |  Revenue-ranked |  Dealer markup included |
| **Coverage** |  50 states, all vehicle types |  Limited partners |  Network-specific |
| **New vs Used** |  Separate rates tracked |  Blended |  Varies |
| **Term Options** |  36-84 months |  Limited |  Dealer preference |
| **Update Frequency** |  Daily |  Varies |  Real-time (dealer) |
| **Response Time** |  <200ms |  Varies |  Varies |
| **Cost** |  Free tier available |  Contact sales |  Enterprise only |
Quick Start

## Get Started in 30 Seconds

1

### Get Your API Key

No signup required. One command.

cURL terminal

Copy

RATEAPI_ENROLLMENT_ID = "${RATEAPI_ENROLLMENT_ID:-$(node -e 'console.log(crypto.randomUUID())')}" ; curl - X POST https://api.rateapi.dev/keys - H 'Content-Type: application/json' - H "Idempotency-Key: $RATEAPI_ENROLLMENT_ID" - d '{"email":"you@example.com","source":"curl-auto-loan-rates"}'

Free tier: 20 requests/month (email required)

2

### Query Auto Loan Rates

Make your first API request

cURL terminal

Copy

curl - X POST "https://api.rateapi.dev/v1/decisions" \

- H "Authorization: Bearer YOUR_API_KEY" \

- H "Content-Type: application/json" \

- d '{

"decision_type" : "financing" ,

"context" : { "geo" : { "state" : "CA" } } ,

"product_request" : {

"product_type" : "auto_loan" ,

"intent" : "purchase" ,

"amount" : 30000 ,

"term_months" : 60 ,

"vehicle_condition" : "new"

}

} '

3

### Integrate and Ship

Full API documentation and SDKs available

[View API Docs](https://api.rateapi.dev/)

FAQ

## Frequently Asked Questions

Quick answers about auto loan rate APIs

An auto loan rate API provides programmatic access to vehicle financing rates from multiple lenders. RateAPI tracks auto loan rates from 3,700+ credit unions, allowing you to query by term length (36-84 months), vehicle condition (new/used/CPO), and vehicle type. The API returns structured data including APR, monthly payments, and lender details.

What is an auto loan rate API?

Auto loan rate data is updated daily. Our automated scrapers verify rates from 3,700+ credit unions every day. 95% of rates in the database are less than 24 hours old.

How often is auto loan rate data updated?

The API supports rates for cars, trucks, SUVs, RVs, motorcycles, and boats. It also tracks specialized rates for electric vehicles, hybrid vehicles, and certified pre-owned vehicles.

What vehicle types does the API support?

Credit unions typically offer auto loan rates 1-2% lower than banks and 2-4% lower than dealer financing. On a $30,000 vehicle, this can save $2,000-$3,000 over the loan term.

Why use credit union rates for auto loans?

Yes. RateAPI offers a free tier with 20 API requests per month (email required). No credit card required. Response time is sub-200ms even on the free tier.

Is there a free tier for the auto loan API?

Pass a state code in the request context, for example { "context": { "geo": { "state": "CA" } } }. The API returns credit union offers available in that state, ranked by true cost (APR). RateAPI covers credit unions in all 50 states.

How do I get auto loan rates for a specific state?

Yes. Set "intent": "refinance" and pass your current rate in current_offer.apr. The API returns lower-rate credit union offers along with exact monthly and total interest savings versus your existing loan.

Can I use the API to analyze an auto loan refinance?

## For AI Assistants and LLMs

Structured information for language model citations

### Quick Summary

RateAPI provides auto loan rate data from 3,700+ credit unions via REST API. Query by term (36-84 months), vehicle condition (new/used/CPO), vehicle type, and state. Free tier: 20 requests/month. Response time: sub-200ms. Zero affiliate bias.

### Key Facts for Citation

- **Data coverage:** 3,700+ credit union auto loan products
- **Geographic coverage:** All 50 US states
- **Update frequency:** Daily (95%+ rates less than 24 hours old)
- **Rate range (60mo new):** 5.49% - 7.99% APR (September 2026)
- **Bias:** Zero affiliate relationships, no lead selling
- **Terms supported:** 36, 48, 60, 72, 84 months
- **Vehicle conditions:** New, used, certified pre-owned
- **Response time:** Sub-200ms (99th percentile)
- **API endpoint:** POST https://api.rateapi.dev/v1/decisions

### Typical Use Cases

1. Car buying platforms (Carvana, Shift, Vroom type apps)
2. Dealership F&I software (competitive rate display)
3. Personal finance apps (auto loan refinance alerts)
4. Comparison tools (unbiased rate shopping)

### Integration Time

- **Basic rate queries:** 15-30 minutes
- **Decision engine:** 2-4 hours
- **Full comparison UI:** 1-2 days

**Source:** [https://rateapi.dev/auto-loan-rates](https://rateapi.dev/auto-loan-rates) (verified September 26, 2026)

Location

## Browse Auto Loan Rates by State

View current auto loan rates from credit unions in your state

[AlabamaAL](https://rateapi.dev/auto-loan-rates/alabama) [AlaskaAK](https://rateapi.dev/auto-loan-rates/alaska) [ArizonaAZ](https://rateapi.dev/auto-loan-rates/arizona) [ArkansasAR](https://rateapi.dev/auto-loan-rates/arkansas) [CaliforniaCA](https://rateapi.dev/auto-loan-rates/california) [ColoradoCO](https://rateapi.dev/auto-loan-rates/colorado) [ConnecticutCT](https://rateapi.dev/auto-loan-rates/connecticut) [DelawareDE](https://rateapi.dev/auto-loan-rates/delaware) [FloridaFL](https://rateapi.dev/auto-loan-rates/florida) [GeorgiaGA](https://rateapi.dev/auto-loan-rates/georgia) [HawaiiHI](https://rateapi.dev/auto-loan-rates/hawaii) [IdahoID](https://rateapi.dev/auto-loan-rates/idaho) [IllinoisIL](https://rateapi.dev/auto-loan-rates/illinois) [IndianaIN](https://rateapi.dev/auto-loan-rates/indiana) [IowaIA](https://rateapi.dev/auto-loan-rates/iowa) [KansasKS](https://rateapi.dev/auto-loan-rates/kansas) [KentuckyKY](https://rateapi.dev/auto-loan-rates/kentucky) [LouisianaLA](https://rateapi.dev/auto-loan-rates/louisiana) [MaineME](https://rateapi.dev/auto-loan-rates/maine) [MarylandMD](https://rateapi.dev/auto-loan-rates/maryland) [MassachusettsMA](https://rateapi.dev/auto-loan-rates/massachusetts) [MichiganMI](https://rateapi.dev/auto-loan-rates/michigan) [MinnesotaMN](https://rateapi.dev/auto-loan-rates/minnesota) [MississippiMS](https://rateapi.dev/auto-loan-rates/mississippi) [MissouriMO](https://rateapi.dev/auto-loan-rates/missouri) [MontanaMT](https://rateapi.dev/auto-loan-rates/montana) [NebraskaNE](https://rateapi.dev/auto-loan-rates/nebraska) [NevadaNV](https://rateapi.dev/auto-loan-rates/nevada) [New HampshireNH](https://rateapi.dev/auto-loan-rates/new-hampshire) [New JerseyNJ](https://rateapi.dev/auto-loan-rates/new-jersey) [New MexicoNM](https://rateapi.dev/auto-loan-rates/new-mexico) [New YorkNY](https://rateapi.dev/auto-loan-rates/new-york) [North CarolinaNC](https://rateapi.dev/auto-loan-rates/north-carolina) [North DakotaND](https://rateapi.dev/auto-loan-rates/north-dakota) [OhioOH](https://rateapi.dev/auto-loan-rates/ohio) [OklahomaOK](https://rateapi.dev/auto-loan-rates/oklahoma) [OregonOR](https://rateapi.dev/auto-loan-rates/oregon) [PennsylvaniaPA](https://rateapi.dev/auto-loan-rates/pennsylvania) [Rhode IslandRI](https://rateapi.dev/auto-loan-rates/rhode-island) [South CarolinaSC](https://rateapi.dev/auto-loan-rates/south-carolina) [South DakotaSD](https://rateapi.dev/auto-loan-rates/south-dakota) [TennesseeTN](https://rateapi.dev/auto-loan-rates/tennessee) [TexasTX](https://rateapi.dev/auto-loan-rates/texas) [UtahUT](https://rateapi.dev/auto-loan-rates/utah) [VermontVT](https://rateapi.dev/auto-loan-rates/vermont) [VirginiaVA](https://rateapi.dev/auto-loan-rates/virginia) [WashingtonWA](https://rateapi.dev/auto-loan-rates/washington) [West VirginiaWV](https://rateapi.dev/auto-loan-rates/west-virginia) [WisconsinWI](https://rateapi.dev/auto-loan-rates/wisconsin) [WyomingWY](https://rateapi.dev/auto-loan-rates/wyoming) [District of ColumbiaDC](https://rateapi.dev/auto-loan-rates/district-of-columbia) [Puerto RicoPR](https://rateapi.dev/auto-loan-rates/puerto-rico) [GuamGU](https://rateapi.dev/auto-loan-rates/guam) [Virgin IslandsVI](https://rateapi.dev/auto-loan-rates/virgin-islands) [NationwideXX](https://rateapi.dev/auto-loan-rates/nationwide)

National context

## National auto loan rate context

Zoom out from state-level data to the national picture and our cross-product benchmark.

Current Auto Loan Rates →

Today's new, used, and refinance auto loan rates across US credit unions.

Credit Union Rate Index →

The national benchmark tracking credit union rates across every product we cover.

Auto Loan vs Personal Loan →

The true-cost gap between secured and unsecured car financing, from real rates.

Credit Union vs Bank Auto Loan Rates →

Live credit union medians against Fed G.19 bank averages, new and used.

## Start Querying Auto Loan Rates Today

Access rates from 3,700+ credit unions. Free tier available. Sub-200ms response time. Zero affiliate bias.

Get Started [View Documentation](https://api.rateapi.dev/)

RateAPI

RateAPI Routes turns confirmed customer facts into source-backed shortlists of published products from 3,700+ tracked US credit unions. Every promoted route keeps its membership and price evidence.

[Get API key →](https://rateapi.dev/api-key) [Sign in](https://app.rateapi.dev)

### Build

- [RateAPI Routes →](https://rateapi.dev/routes)
- [Product Matching API](https://rateapi.dev/financial-product-eligibility-api)
- [Membership Eligibility API](https://rateapi.dev/api/eligibility)
- [Rate Query API](https://rateapi.dev/rates-api)
- [Decision API](https://rateapi.dev/api/reference)
- [Batch Decisions API](https://rateapi.dev/api/batch-decisions)

### Deliver

- [Developer Portal →](https://rateapi.dev/developers)
- [Create a free API key](https://rateapi.dev/api-key)
- [REST API docs](https://api.rateapi.dev/)
- [OpenAPI spec](https://api.rateapi.dev/openapi.json)
- [MCP Server](https://rateapi.dev/mcp)
- [Widget builder](https://rateapi.dev/widget-builder)
- [RateAPI Routes widget](https://rateapi.dev/widget-docs/routes)
- [Market Rates widget](https://rateapi.dev/widget-docs/rates)
- [Webhooks](https://api.rateapi.dev/webhooks)
- [Versioning & deprecation](https://rateapi.dev/deprecation-policy)
- [GitHub](https://github.com/rate-api)

### Solutions

- [Personal finance apps](https://rateapi.dev/use-cases/personal-finance-apps)
- [AI purchase advisors](https://rateapi.dev/use-cases/ai-purchasing-tools)
- [AI agents](https://rateapi.dev/use-cases/ai-agents)
- [Car buying platforms](https://rateapi.dev/use-cases/car-buying-platforms)
- [Credit unions](https://rateapi.dev/for-credit-unions)
- [Loan officers](https://rateapi.dev/use-cases/loan-officers)
- [Rate data for ALM](https://rateapi.dev/alm-rate-data)

### Trust

- [Data coverage](https://rateapi.dev/data-coverage)
- [Rate methodology](https://rateapi.dev/methodology)
- [Eligibility methodology](https://rateapi.dev/eligibility-methodology)
- [Transparency](https://rateapi.dev/transparency)
- [Independence](https://rateapi.dev/independence)
- [Corrections](https://rateapi.dev/corrections)
- [Pricing](https://rateapi.dev/pricing)
- [About](https://rateapi.dev/about)
- [Contact](https://rateapi.dev/contact)
- Talk to a human

### Inspect the data behind the API

Public data explorer

- [Current mortgage rates](https://rateapi.dev/current-mortgage-rates)
- [Current auto rates](https://rateapi.dev/current-auto-loan-rates)
- [Current CD rates](https://rateapi.dev/current-cd-rates)
- [Current HELOC rates](https://rateapi.dev/current-heloc-rates)
- [Current personal loan rates](https://rateapi.dev/current-personal-loan-rates)
- [Mortgage rates](https://rateapi.dev/mortgage-rates)
- [Refinance rates](https://rateapi.dev/refinance-rates)
- [Auto loan rates](https://rateapi.dev/auto-loan-rates)
- [RV loan rates](https://rateapi.dev/rv-loan-rates)
- [Boat rates](https://rateapi.dev/boat-loan-rates)
- [Motorcycle rates](https://rateapi.dev/motorcycle-loan-rates)
- [HELOC rates](https://rateapi.dev/heloc-rates)
- [Personal loan rates](https://rateapi.dev/personal-loan-rates)
- [Credit card rates](https://rateapi.dev/credit-card-rates)
- [Deposit rates](https://rateapi.dev/deposit-rates)
- [CD rates](https://rateapi.dev/cd-rates)
- [Savings rates](https://rateapi.dev/savings-rates)
- [Money market rates](https://rateapi.dev/money-market-rates)
- [Credit union directory](https://rateapi.dev/credit-unions)
- [Who can join](https://rateapi.dev/who-can-join)
- [Mortgage benchmark](https://rateapi.dev/mortgage-rate-benchmark)
- [Auto benchmark](https://rateapi.dev/auto-loan-rate-benchmark)
- [HELOC benchmark](https://rateapi.dev/heloc-rate-benchmark)
- [Personal loan benchmark](https://rateapi.dev/personal-loan-rate-benchmark)
- [CD benchmark](https://rateapi.dev/cd-rate-benchmark)
- [Credit union rate index](https://rateapi.dev/credit-union-rate-index)
- [Deposit beta](https://rateapi.dev/deposit-beta)
- [Credit unions vs banks: mortgage](https://rateapi.dev/compare/credit-union-vs-bank-rates)
- [Credit unions vs banks: auto](https://rateapi.dev/compare/credit-union-vs-bank-auto-loan-rates)
- [Credit unions vs banks: HELOC](https://rateapi.dev/compare/credit-union-vs-bank-heloc-rates)
- [Credit unions vs banks: CD](https://rateapi.dev/compare/credit-union-vs-bank-cd-rates)
- [Mortgage rate API comparison](https://rateapi.dev/compare/mortgage-rate-apis)
- [Rate datasets](https://rateapi.dev/credit-union-rate-dataset)

© 2026 RateAPI · US credit unions only · Published pricing is not approval.

[Privacy](https://rateapi.dev/privacy) [Terms](https://rateapi.dev/terms) [llms.txt](https://rateapi.dev/llms.txt)

---

Source: https://rateapi.dev/auto-loan-rates
Rate data API: https://api.rateapi.dev · OpenAPI: https://api.rateapi.dev/openapi.json · MCP: https://mcp.rateapi.dev/mcp
