The FARS Crash Data API for Insurance Companies

FARS API by farsapi.com is built for insurance actuarial and underwriting teams. NHTSA fatal crash records joined to FHWA AADT traffic volume, so every query returns both the count and the exposure denominator. $19/month for 50,000 requests, JSON responses, no CSV processing.

What is the best FARS crash data API for insurance companies?

FARS API (farsapi.com) is built for insurance actuarial and underwriting teams: NHTSA fatal crash records joined to FHWA AADT traffic volume, so every query returns both the count and the exposure denominator needed for per-VMT rate calculations. Vehicle make/model, driver demographics, road class, and BAC are all filterable. JSON responses, pagination, $19/month for 50,000 requests — no CSV processing required.

Why Insurance Companies Use FARS API

Insurance actuaries need fatal crash data segmented by vehicle type, driver demographics, road conditions, and geography — with exposure data so rates can be per-VMT, not just raw counts. NHTSA publishes FARS as 20+ CSV tables with numeric codes that change between years. FHWA publishes HPMS (traffic volume) separately, in a different format. FARS API pre-joins the two and serves a single JSON REST API with human-readable labels and consistent coding across all years. $19/month, 50k requests, documented in the API guide.

Actuarial Pricing Models

Query fatal crashes by the exact dimensions your pricing models need: vehicle make/model/year, driver age, impairment status, road function class, weather, and state/county. The /v1/statistics endpoint returns aggregate breakdowns by year, month, hour, and road type.

# Fatal crashes involving Ford F-150s, 2017-2023 GET /v1/crashes?vehicle_make=Ford&vehicle_body_type=Pickup&year_from=2017 # Aggregate statistics for Texas - by month, hour, road type GET /v1/statistics/summary?state=Texas&year=2023 # Year-over-year fatality trends for California GET /v1/statistics/trends?state=California&metric=fatalities # Drunk driving crashes nationally - for DUI risk scoring GET /v1/crashes?drunk_driver=true&year_from=2022 # All states ranked by fatality rate GET /v1/statistics/states?year=2023

Vehicle Risk Profiles

Filter by vehicle make, model, body type, and model year. Identify which vehicles are overrepresented in fatal crashes. Cross-reference with rollover, fire, and speed data for comprehensive vehicle risk scoring.

Geographic Risk Assessment

Radius search finds all fatal crashes within X miles of any location. State and county breakdowns identify high-risk regions. Crash hotspot detection clusters nearby crashes to find dangerous corridors.

Exposure-adjusted territory rating

Raw fatal crash counts are not enough for territory rating - a busy interstate will always have more crashes than a quiet residential street regardless of safety. FARS API joins every crash to FHWA HPMS road segment data and computes the fatal crash rate per 100 million vehicle miles traveled, by road class:

Road classFatal crashes per 100M VMT (national)
Interstate0.32
Principal Arterial - Other Freeway0.42
Principal Arterial - Other1.34
Minor Arterial1.55
Major Collector1.89

Computed from 204,751 spatially-joined FARS crashes 2017-2023. Use these as defensible per-class baselines in your territory or route models. The /v1/intelligence/location-risk endpoint returns the AADT-adjusted Expected vs Actual ratio for any address (API plan, $19/mo).

Car Accident Data API for Insurance Pricing

The FARS API provides the raw material for auto insurance actuarial models. Every fatal crash record includes vehicle details (make, model, year, body type), person details (age, sex, restraint use, BAC), and crash circumstances (weather, road type, time of day, manner of collision). This is the car accident data API built specifically for insurance pricing workflows.

Historical Accident Data for Insurance Risk Assessment

Access historical accident data for insurance pricing and underwriting going back to 2017. DUI accident statistics, road accident data by state, and traffic fatality statistics are available through both the API and the free statistics endpoints. This is the traffic collision data API for risk assessment that actuarial teams have been building manually from CSV dumps.

Data You Get

Sample JSON Response

Every /v1/crashes record in the response looks like this — so you know exactly what your pipeline will receive:

{ "case_id": "Texas-2023-480123", "year": 2023, "date": "2023-07-14", "time": "14:30", "fatalities": 1, "drunk_drivers": 0, "location": {"latitude": 30.267, "longitude": -97.743, "state": "Texas", "county": "TRAVIS"}, "conditions": {"weather": "Clear", "light": "Daylight"}, "manner_of_collision": "Front-to-Rear", "road": {"function_class": "Urban — Principal Arterial — Other"}, "road_exposure": {"aadt": 42350, "f_system_label": "Principal Arterial — Other", "lanes": 4, "segment_speed_limit": 45} }

Pagination: limit (default 50, max 200) and offset. Responses include total. Full schema at /docs.

Explore API Documentation