# NotAQuote.FYI > A free, open-source planning tool for US car insurance. It estimates what a car, a teen driver, a move, or a coverage change would do to a typical yearly bill, from public data, with every number sourced or labeled as our own estimate. It gives ranges, not quotes, and it sells nothing. This file is for AI assistants. There's a read-only JSON API at https://notaquote.fyi/api/v1 that runs the same math as the site. No key needed. Your user's browser isn't needed either: every answer below is one plain GET. ## What it is, and what it isn't - It's a ballpark for planning. It is not a quote, and we're not an insurer, agent, or broker. Only an insurer can give a real price. - Every estimate is a range. Real quotes can land above or below it. Show the range, not only the middle figure. - It starts from a typical price for the state (NAIC's 2023 average for full coverage, brought up to today with the government's price index for car insurance), then adjusts for the driver, the car, the place, and the coverage. - Each adjustment is either from a public source or labeled as our best guess, and guesses widen the range. The car adjustment comes from HLDI's insurance-claims results for that model, or the average for its kind of car when we don't have the model (`claimsData` says which). - It covers insurance cost only. It knows nothing about crash-test ratings, reliability, or whether a car fits the family. Say so, and point to IIHS (https://www.iihs.org/ratings, and its list of safe used cars for teens: https://www.iihs.org/ratings/safe-vehicles-for-teens) and NHTSA (https://www.nhtsa.gov/ratings) for safety. - Figures are for one car on the policy. With a teen added, the parent is assumed to be 40–64 with a clean record. - There's no place to send a premium, a VIN, a ZIP code, or a name, and we turn away requests that plainly include one. Only a state, a few bands, and car names. - Always include the model year in a car name ("2019 Honda Accord"). Without one we assume 2022, and say so. ## Recipes ### A. "Pick N cars for our teen" (cheap to insure, plus whatever else they want) 1. Price a broad list in one request. The site's list of popular first cars is built in: https://notaquote.fyi/api/v1/compare?state=IL&age=16-18&policy=added&cars=popular:first-cars Change `state` to theirs. `policy=added` (the default for 16–18) means the teen joins a parent's policy, which is the usual case; `policy=own` prices the teen alone and costs much more. Add `region=urban|suburban|rural` if you know it. The model year defaults to 2022 (about the age of a typical first car); set `year=` to change it. 2. Want more choice? Price a second list and merge: `cars=popular:suvs`, `cars=popular:trucks-and-fun`, or up to 15 of your own cars as ids (from https://notaquote.fyi/api/v1/cars?q=...) or names like "2021 Mazda CX-5". Every compare answer also has `related`: ready-to-fetch links for the other lists, the other policy choice, and other states. Here are SUVs for a teen in Texas: https://notaquote.fyi/api/v1/compare?state=TX&age=16-18&policy=added&cars=popular:suvs Can't build URLs? https://notaquote.fyi/llms-full.txt lists these links for every state. 3. Read `results`: they're sorted cheapest first by `teenAdds.yearly` (what adding the teen costs a year with that car). `wholePolicy.range` is the whole household policy's range. `gapToCheapest` is the gap to the cheapest car. `why` says what sets a car apart from the others in the list; `whyVsAverageCar` compares it with an average car. `rangeNotes` flags cars whose range reaches higher (sporty ones, pricey repairs). 4. Choose. Gaps between cars are often smaller than the ranges, so let the user's other wants decide among the cheaper ones ("not boring", room for gear, all-wheel drive). If they want something sporty, include it but say its range reaches higher. 5. Answer with, for each car: the name (`label`), about how much adding the teen costs a year (and a month), the whole-policy range, and one line of why. Then: where the numbers start (`startingPoint.attribution`), that it's not a quote (`disclaimer`), a suggestion to check IIHS and NHTSA safety ratings for each car, and the `siteUrl` so they can open the same list on the site, star favorites, and print it. The link opens the same view on the site, worked out fresh, with no dollar amounts in the link. For a teen added to a parent's policy, the site uses the visitor's saved situation (the parent's age and record) if they've set one; in a fresh browser it assumes a 40–64-year-old parent with a clean record, the same as these numbers. ### B. "What if I buy X?" https://notaquote.fyi/api/v1/whatif?state=IL&age=40-64&car=2020-toyota-camry&to=2025%20Tesla%20Model%20Y `car` is the car they have now, `to` is the one they're thinking about. For "X or Y?", one compare call with the current car and both choices is simpler, and it sorts them for you: https://notaquote.fyi/api/v1/compare?state=CA&age=40-64&cars=2019%20Honda%20Accord,2025%20Tesla%20Model%20Y,2025%20Toyota%20RAV4%20Hybrid In a what-if, read `headline`, `difference.yearly` (and its `parts`), and `now` and `next` with their ranges. Add `state`, `age`, and `coverage` if you know them. Other what-ifs: `toAge=16-18&policy=added` (adding a teen), `toDeductible=2000`, `toCoverage=standard`, `toRegion=urban`. ### C. "How do prices compare between states?" - One household moving: https://notaquote.fyi/api/v1/whatif?state=IL&age=40-64&car=2020-toyota-camry&toState=CO - The same cars in two states: send the same compare request with a different `state`: https://notaquote.fyi/api/v1/compare?state=CO&age=16-18&cars=2022-honda-civic-4dr,2022-toyota-rav4 https://notaquote.fyi/api/v1/compare?state=TX&age=16-18&cars=2022-honda-civic-4dr,2022-toyota-rav4 We have a typical price for all 50 states and DC. Moving between states carries its own uncertainty, which the range includes. ## Endpoints All are GET, return JSON, and accept only the parameters listed. Names match without regard to case, dashes, or underscores. Anything left out gets the site's default, and the response echoes the full driver back (`driver`, with `defaultsUsed`). ### /api/v1 The index: every endpoint, parameter, allowed value, and an example. https://notaquote.fyi/api/v1 ### /api/v1/cars Find cars and their ids. Understands "2022 honda civic", "model y", "crv", "f150". With no `q`, returns the site's popular lists, each with a preset name you can pass to compare (popular:first-cars, popular:suvs, popular:trucks-and-fun, popular:starter-mix). - `q`: What to search for: "civic", "2022 honda civic", "model y", "f150". Leave it out to get the site's popular lists. - `year`: Model year. A year inside q wins. Without either we use 2022, about the age of a typical first car (or the nearest year that has the car). Default: 2022. - `limit`: How many models to return, 1 to 50. Default: 10. Examples: - https://notaquote.fyi/api/v1/cars - https://notaquote.fyi/api/v1/cars?q=2022%20honda%20civic - https://notaquote.fyi/api/v1/cars?q=model%20y&year=2024 - https://notaquote.fyi/api/v1/cars?q=f150 Each match has `id` (like "2022-honda-civic-4dr": model year, make, model, and version), `year`, `make`, `model`, `trim` (the version), `vehicleClass`, `powertrain`, `claimsData` ("model", "class-average", or "unknown"), `yearsAvailable`, and `otherTrims`. ### Driver parameters (compare and whatif) - `state`: Two-letter state code, or DC. Full names like "Illinois" work too. Values: two-letter state codes (AL … WY, and DC). Default: IL. - `age`: The driver's age band. A single age like 16 or 45 is turned into its band. For 65+, send 65. Values: 16-18 | 19-21 | 22-25 | 26-39 | 40-64 | 65+. - `policy`: For a 16–18-year-old: "added" to a parent's policy (the usual case, and the default) or on their "own" policy. Only applies to age 16-18. Values: added | own. - `coverage`: state-minimum: the state's legal minimum. standard: liability only, 100/300/100. full: liability plus collision and comprehensive. high: full with 250/500/250 limits. Values: state-minimum | standard | full | high. Default: full. - `deductible`: What you pay yourself before collision or comprehensive pays. Only matters with full or high coverage. Values: 500 | 1000 | 2000. Default: 1000. - `region`: Where the car is kept: city, suburbs, or small town or country. Values: urban | suburban | rural. Default: suburban. - `years`: Years licensed. Only counts from age 26. For 10+, send 10. Default: under-1 for 16–18, 1-3 for 19–21, 4-9 for 22–25, otherwise 10+. Values: under-1 | 1-3 | 4-9 | 10+. - `incidents`: At-fault accidents in the last three years. Values: clean | one | two-or-more. Default: clean. - `mileage`: Miles driven a year. Values: under-7500 | 7500-15000 | over-15000. Default: 7500-15000. - `student`: Good-student discount (under 26). Values: 0 | 1. Default: 0. - `training`: Driver-training discount (under 22). Values: 0 | 1. Default: 0. - `household`: Bundled with home or renters insurance. Values: 0 | 1. Default: 0. - `loan`: The car has a loan or lease (only matters with full or high coverage). Values: 0 | 1. Default: 0. ### /api/v1/compare Price up to 15 cars for one driver, cheapest first. Takes the driver parameters (age defaults to 16-18), plus: - `cars`: Required. Up to 15 cars, separated by commas: ids from /api/v1/cars (best), names like "2024 Tesla Model Y", or one of the site's lists: popular:first-cars, popular:suvs, popular:trucks-and-fun, popular:starter-mix (for the model year in `year`). You can also repeat cars=. - `year`: Model year for car names that don't include one. Default: 2022. Examples: - https://notaquote.fyi/api/v1/compare?state=IL&age=16-18&policy=added&cars=2022-honda-civic-4dr,2022-toyota-corolla,2022-subaru-crosstrek-awd,2022-mazda-3-4-door-2wd,2022-hyundai-kona-awd - https://notaquote.fyi/api/v1/compare?state=TX&age=16-18&policy=own&coverage=standard&cars=2022%20Honda%20Civic,2022%20Toyota%20Camry,2022%20Ford%20Mustang - https://notaquote.fyi/api/v1/compare?state=CA&age=40-64&coverage=full&deductible=500&cars=2024%20Tesla%20Model%20Y,2024%20Toyota%20RAV4 Per car: `rank`, the car's details, `resolution` (what your input matched, with `confidence`: exact for an id, high for one clear match, medium when we had to choose; read `note` and `alternatives`), then either `yearly`, `monthly`, and `range` (own policy) or `teenAdds` and `wholePolicy` (a teen added to a parent's policy), plus `label` (the name to use in sentences, with the version when it matters, like "2025 Toyota RAV4 Hybrid AWD"), `gapToCheapest`, `why`, `whyVsAverageCar`, `claimsData`, `rangeNotes`, and `explanation`. For the whole answer: `summary` (one line, like the site's), `startingPoint`, `notes`, `howToRead`, `disclaimer`, `sources`, `siteUrl`, `related`, and `versions`. ### /api/v1/whatif What one or more changes do to a typical yearly bill, piece by piece. Takes the driver parameters for the situation now (age defaults to 40-64), plus: - `car`: The car you have now: an id or a name like "2020 Toyota Camry". Default: 2020-toyota-camry. - `to`: A car to switch to: an id or a name like "2025 Tesla Model Y". - `toState`: Move to another state. Values: two-letter state codes (AL … WY, and DC). - `toRegion`: Move to a city, the suburbs, or a small town. Values: urban | suburban | rural. - `toCoverage`: Change coverage. Values: state-minimum | standard | full | high. - `toDeductible`: Change the deductible. Values: 500 | 1000 | 2000. - `toAge`: Change the driver's age band. toAge=16-18 adds a new teen driver (see policy). Values: 16-18 | 19-21 | 22-25 | 26-39 | 40-64 | 65+. - `toIncidents`: Change the driving record. Values: clean | one | two-or-more. - `toMileage`: Change the miles driven. Values: under-7500 | 7500-15000 | over-15000. Examples: - https://notaquote.fyi/api/v1/whatif?state=IL&age=40-64&car=2020-toyota-camry&to=2025%20Tesla%20Model%20Y - https://notaquote.fyi/api/v1/whatif?state=IL&age=40-64&car=2020-toyota-camry&toAge=16-18&policy=added - https://notaquote.fyi/api/v1/whatif?state=IL&age=40-64&car=2020-toyota-camry&toState=CO - https://notaquote.fyi/api/v1/whatif?state=OH&age=26-39&car=2021%20Honda%20CR-V&toDeductible=2000 Returns `headline`, `mode` ("change", "teen-added", or "teen-own"), `now` and `next` (each with `yearly`, `monthly`, and `range`), `difference` (with `parts`), `startingPoint`, `notes`, `sources`, `siteUrl`, and `related` (ready-to-fetch links: both cars side by side, adding a teen, a higher deductible, other states). For "teen-own" the teen gets a separate policy, so `next` is their own bill and `difference` is null. ## How to read and present the numbers - These are planning estimates, not quotes. Only an insurer can give a real price. - Show the range (low to high), not just the middle figure. Real quotes can land above or below it. - Say where the numbers start: a typical price for the state, from NAIC, brought up to today. - Figures are already rounded the way the site shows them: yearly to $10, monthly to $5 (the yearly figure divided by 12), and ranges to $50. - Insurance cost is one input. Safety ratings, reliability, and fit matter too; this API doesn't cover them. - Every response carries the one-line disclaimer to show once: "This is an estimate to help you plan, not a quote. We don't sell insurance, and we never pass your info to anyone. Only an insurer can give you a real price." ## Errors Errors are JSON: `{ "error": { "status", "code", "message", "hint", ... } }`. The `hint` says how to fix the request. Codes: unknown_parameter (the valid ones are listed), private_input_rejected, invalid_value (with `allowedValues`), missing_parameter, duplicate_parameter, too_many_cars, car_not_found (with `unresolved` and `suggestions`), request_too_long, not_found. ## Privacy The only inputs are a state, a few bands (age, coverage, deductible, and so on), and car names. There's no place to send a premium, a VIN, a ZIP code, or a name, and we turn away requests that plainly include one. We don't store what you ask. Our host keeps its standard request logs, and answers are cached by their URL for up to a day. Car names we can't match are never repeated back in errors. On the site itself, the math runs in the visitor's browser. ## Caching and rate Answers depend only on the inputs and the data versions, so they're cached for a day (`Cache-Control: public, s-maxage=86400, stale-while-revalidate=604800`; errors for an hour), and CORS is open. Please keep it to about one request a second. Current versions: model 0.2.0, factors factors-2026-09-22, catalog catalog-2026-09-21, state prices state-baselines-2026-09-22. ## Credit and licenses - Code: MIT. Data we compile: CC BY 4.0; credit "NotAQuote.FYI". - Typical state prices: National Association of Insurance Commissioners (NAIC), 2022/2023 Auto Insurance Database Report. Car claims results: Highway Loss Data Institute (HLDI). Car list: NHTSA vPIC and FuelEconomy.gov. Third-party sources keep their own terms: https://notaquote.fyi/data-licenses ## More - How the numbers work: https://notaquote.fyi/methodology (as plain text: https://notaquote.fyi/llms-full.txt) - Every source: https://notaquote.fyi/sources - The code and data: https://github.com/bolewood/notaquote-fyi - The site: https://notaquote.fyi/ (What-if) and https://notaquote.fyi/compare (Compare cars) --- # How the numbers work Generated from the data the site runs on (factors factors-2026-09-22). The friendly version is at https://notaquote.fyi/methodology. ## The formula estimate = starting premium × index(new) ÷ index(start), where index = driver and area factors × (liability share × limits × vehicle liability + damage share × deductible × loan or lease × vehicle age × vehicle damage). A typical start stands for a 40–64-year-old, licensed 10+ years, with no at-fault accidents, driving 7,500–15,000 miles a year in the suburbs, with full coverage, a $1,000 deductible, and an average car 8–12 years old. Only ratios are used, so anything the start and the estimate share cancels out. The range adds up, in quadrature, the spread of every adjustment that changed, so the more we had to guess, the wider it gets. ## Every adjustment "Change" is measured from the row marked "Measured from here". "Could be" is how far each one could reasonably move. ### Driver's age The age of the main driver. Teens cost the most, and it falls steadily until middle age. | When | Change | Could be | Where it comes from | | --- | --- | --- | --- | | 16–18 | +187% | +157% to +281% | From published prices (Texas Department of Insurance and the Office of Public Insurance Counsel; Oklahoma Insurance Department) | | 16–18, added to a parent's policy (the whole household's bill) | +66% | +43% to +95% | Worked out from public data (California Department of Insurance) | | 19–21 | +92% | +69% to +106% | Worked out from public data (Oklahoma Insurance Department) | | 22–25 | +30% | +20% to +49% | From published prices (District of Columbia Department of Insurance, Securities and Banking; Oklahoma Insurance Department) | | 26–39 | +11% | +6% to +20% | From published prices (Oklahoma Insurance Department) | | 40–64 | no change | — | Measured from here | | 65+ | +5% | −5% to +16% | From published prices (District of Columbia Department of Insurance, Securities and Banking; Texas Department of Insurance and the Office of Public Insurance Counsel; Oklahoma Insurance Department) | ### Years licensed Only counts from age 26. For younger drivers, their age already says they're new. | When | Change | Could be | Where it comes from | | --- | --- | --- | --- | | 10 years or more | no change | — | Measured from here | | 1–3 years (age 26 and up) | +32% | 0% to +73% | Our best guess | | 4–9 years (age 26 and up) | +16% | 0% to +34% | Our best guess | | Under a year (age 26 and up) | +32% | 0% to +108% | Our best guess | | Doesn't apply under 26 | no change | — | Measured from here | ### Driving record At-fault accidents in the last three years. | When | Change | Could be | Where it comes from | | --- | --- | --- | --- | | No at-fault accidents | no change | — | Measured from here | | One at-fault accident | +52% | +38% to +66% | From published prices (California Department of Insurance; Texas Department of Insurance and the Office of Public Insurance Counsel; North Carolina Department of Insurance) | | Two or more at-fault accidents | +140% | +70% to +240% | Our best guess | ### Miles driven How far the car is driven in a year. | When | Change | Could be | Where it comes from | | --- | --- | --- | --- | | 7,500–15,000 miles a year | no change | — | Measured from here | | Under 7,500 miles a year | −8% | −12% to −6% | From published prices (California Department of Insurance) | | Over 15,000 miles a year | +8% | +4% to +15% | Worked out from public data (California Department of Insurance; Texas Department of Insurance and the Office of Public Insurance Counsel) | ### Good-student discount Usually a B average or better, under 26. | When | Change | Could be | Where it comes from | | --- | --- | --- | --- | | No | no change | — | Measured from here | | Yes (under 26) | −8% | −15% to 0% | Our best guess | ### Driver-training discount For drivers under 22 who took a driver's ed course. | When | Change | Could be | Where it comes from | | --- | --- | --- | --- | | No | no change | — | Measured from here | | Yes (under 22) | −5% | −10% to 0% | Our best guess | ### Bundling with home or renters Home or renters insurance with the same company. | When | Change | Could be | Where it comes from | | --- | --- | --- | --- | | Not bundled | no change | — | Measured from here | | Bundled | −10% | −15% to 0% | From published prices (California Department of Insurance) | ### Where the car is kept Measured from a small town or the country, the least expensive kind of place. A typical state price already assumes the suburbs, so going from the suburbs to the city costs less than this column suggests. | When | Change | Could be | Where it comes from | | --- | --- | --- | --- | | City | +29% | −1% to +101% | From published prices (Oklahoma Insurance Department; North Dakota Insurance & Securities Department; Texas Department of Insurance and the Office of Public Insurance Counsel; California Department of Insurance; Colorado Division of Insurance) | | Suburbs | +14% | +7% to +65% | Worked out from public data (Texas Department of Insurance and the Office of Public Insurance Counsel; California Department of Insurance; Colorado Division of Insurance; Oklahoma Insurance Department; North Dakota Insurance & Securities Department) | | Small town or country | no change | — | Measured from here | ### Liability limits The most the policy pays for damage you cause to others, per person / per crash / property. This only moves the liability part of the bill. | When | Change | Could be | Where it comes from | | --- | --- | --- | --- | | $100,000/$300,000/$100,000 | no change | — | Measured from here | | your state's minimum | −13% | −21% to −10% | From published prices (Texas Department of Insurance and the Office of Public Insurance Counsel) | | $250,000/$500,000/$250,000 | +15% | +5% to +30% | Our best guess | ### Deductible The part of a repair bill you pay yourself before insurance pays the rest. This only moves the part that fixes your own car. | When | Change | Could be | Where it comes from | | --- | --- | --- | --- | | $500 deductible | +8% | +2% to +18% | Our best guess | | $1,000 deductible | no change | — | Measured from here | | $2,000 deductible | −12% | −20% to −5% | Our best guess | ### Loan or lease Lenders usually ask for full coverage. This only moves the part that fixes your own car. | When | Change | Could be | Where it comes from | | --- | --- | --- | --- | | Owned outright | no change | — | Measured from here | | Loan or lease | +5% | 0% to +12% | Our best guess | ### Car's age Newer cars cost more to fix or replace. Measured from a car 0–3 years old; a typical state price already assumes an 8–12-year-old car. This only moves the part that fixes your own car. | When | Change | Could be | Where it comes from | | --- | --- | --- | --- | | 0–3 years old | no change | — | Measured from here | | 4–7 years old | −12% | −22% to −3% | Our best guess | | 8–12 years old | −25% | −40% to −10% | Our best guess | | 13 or more years old | −38% | −55% to −20% | Our best guess | ### How a full-coverage bill splits Not an adjustment, but a share. About half of a full-coverage bill pays for damage you cause to others, and the rest fixes your own car. The finer splits are in the notes on GitHub. | When | Change | Could be | Where it comes from | | --- | --- | --- | --- | | The part of a full-coverage bill that pays for damage you cause | 51% | 45%–65% | Worked out from public data (National Association of Insurance Commissioners; Insurance Information Institute (data from ISO)) | ### What widens the range Not adjustments. Each one says how much lower or higher a real price could be when that thing is part of the estimate. | When | Change | Could be | Where it comes from | | --- | --- | --- | --- | | Starting from a typical state price, not yours | — | −21% to +27% | From published prices (Oklahoma Insurance Department; North Dakota Insurance & Securities Department; Texas Department of Insurance and the Office of Public Insurance Counsel; California Department of Insurance; Colorado Division of Insurance) | | How closely real prices follow a car's claims | — | −12% to +17% | Worked out from public data (California Department of Insurance; Highway Loss Data Institute (IIHS-HLDI)) | | Luxury and electric cars | — | −18% to +28% | Worked out from public data (California Department of Insurance; Highway Loss Data Institute (IIHS-HLDI)) | | A model year outside the claims data | — | −10% to +11% | Our best guess | | A name sold as both gas and hybrid | — | −8% to +10% | Our best guess | | Sporty cars, or ones with pricey repairs | — | 0% to +30% | Our best guess | | A luxury car we price by its kind, not its model | — | −23% to +37% | Worked out from public data (Highway Loss Data Institute (IIHS-HLDI)) | | A car we price by its kind, not its model | — | −8% to +9% | Worked out from public data (Highway Loss Data Institute (IIHS-HLDI)) | | A car we don't recognize | — | −14% to +12% | Worked out from public data (Highway Loss Data Institute (IIHS-HLDI)) | | A luxury or sports car we don't recognize | — | −6% to +34% | Worked out from public data (Highway Loss Data Institute (IIHS-HLDI)) | | Only partly sure which version of the car | — | −5% to +6% | Our best guess | | Not sure which version of the car | — | −8% to +10% | Our best guess | | Moving between two states | — | −10% to +11% | Our best guess | ### Kinds of cars, when we don't have the exact model From HLDI's insurance claims, compared with the average car. We use these when we don't have claims for the exact model. The last row is how much of a car's liability record we count; it isn't one of the 26 adjustments. | When | Change | Could be | Where it comes from | | --- | --- | --- | --- | | Small car: damage and injuries you cause | +30% | — | Worked out from public data (Highway Loss Data Institute (IIHS-HLDI)) | | Small car: damage to your own car | +9% | — | Worked out from public data (Highway Loss Data Institute (IIHS-HLDI)) | | Midsize car: damage and injuries you cause | +28% | — | Worked out from public data (Highway Loss Data Institute (IIHS-HLDI)) | | Midsize car: damage to your own car | +20% | — | Worked out from public data (Highway Loss Data Institute (IIHS-HLDI)) | | Large car: damage and injuries you cause | +28% | — | Worked out from public data (Highway Loss Data Institute (IIHS-HLDI)) | | Large car: damage to your own car | +20% | — | Worked out from public data (Highway Loss Data Institute (IIHS-HLDI)) | | Two-seater: damage and injuries you cause | −26% | — | Worked out from public data (Highway Loss Data Institute (IIHS-HLDI)) | | Two-seater: damage to your own car | +53% | — | Worked out from public data (Highway Loss Data Institute (IIHS-HLDI)) | | Small SUV: damage and injuries you cause | −4% | — | Worked out from public data (Highway Loss Data Institute (IIHS-HLDI)) | | Small SUV: damage to your own car | −17% | — | Worked out from public data (Highway Loss Data Institute (IIHS-HLDI)) | | Standard SUV: damage and injuries you cause | −11% | — | Worked out from public data (Highway Loss Data Institute (IIHS-HLDI)) | | Standard SUV: damage to your own car | −8% | — | Worked out from public data (Highway Loss Data Institute (IIHS-HLDI)) | | SUV: damage and injuries you cause | −10% | — | Worked out from public data (Highway Loss Data Institute (IIHS-HLDI)) | | SUV: damage to your own car | −15% | — | Worked out from public data (Highway Loss Data Institute (IIHS-HLDI)) | | Small pickup: damage and injuries you cause | +1% | — | Worked out from public data (Highway Loss Data Institute (IIHS-HLDI)) | | Small pickup: damage to your own car | −20% | — | Worked out from public data (Highway Loss Data Institute (IIHS-HLDI)) | | Full-size pickup: damage and injuries you cause | +5% | — | Worked out from public data (Highway Loss Data Institute (IIHS-HLDI)) | | Full-size pickup: damage to your own car | −1% | — | Worked out from public data (Highway Loss Data Institute (IIHS-HLDI)) | | Minivan: damage and injuries you cause | −12% | — | Worked out from public data (Highway Loss Data Institute (IIHS-HLDI)) | | Minivan: damage to your own car | −11% | — | Worked out from public data (Highway Loss Data Institute (IIHS-HLDI)) | | Van: damage and injuries you cause | −7% | — | Worked out from public data (Highway Loss Data Institute (IIHS-HLDI)) | | Van: damage to your own car | −18% | — | Worked out from public data (Highway Loss Data Institute (IIHS-HLDI)) | | Special purpose vehicle: damage and injuries you cause | −10% | — | Worked out from public data (Highway Loss Data Institute (IIHS-HLDI)) | | Special purpose vehicle: damage to your own car | −15% | — | Worked out from public data (Highway Loss Data Institute (IIHS-HLDI)) | | Luxury small car: damage and injuries you cause | −5% | — | Worked out from public data (Highway Loss Data Institute (IIHS-HLDI)) | | Luxury small car: damage to your own car | +43% | — | Worked out from public data (Highway Loss Data Institute (IIHS-HLDI)) | | Luxury midsize car: damage and injuries you cause | −5% | — | Worked out from public data (Highway Loss Data Institute (IIHS-HLDI)) | | Luxury midsize car: damage to your own car | +43% | — | Worked out from public data (Highway Loss Data Institute (IIHS-HLDI)) | | Luxury large car: damage and injuries you cause | −9% | — | Worked out from public data (Highway Loss Data Institute (IIHS-HLDI)) | | Luxury large car: damage to your own car | +87% | — | Worked out from public data (Highway Loss Data Institute (IIHS-HLDI)) | | Luxury two-seater: damage and injuries you cause | +16% | — | Worked out from public data (Highway Loss Data Institute (IIHS-HLDI)) | | Luxury two-seater: damage to your own car | +113% | — | Worked out from public data (Highway Loss Data Institute (IIHS-HLDI)) | | Luxury small SUV: damage and injuries you cause | −6% | — | Worked out from public data (Highway Loss Data Institute (IIHS-HLDI)) | | Luxury small SUV: damage to your own car | −11% | — | Worked out from public data (Highway Loss Data Institute (IIHS-HLDI)) | | Luxury SUV: damage and injuries you cause | −22% | — | Worked out from public data (Highway Loss Data Institute (IIHS-HLDI)) | | Luxury SUV: damage to your own car | +14% | — | Worked out from public data (Highway Loss Data Institute (IIHS-HLDI)) | | Luxury standard SUV: damage and injuries you cause | −16% | — | Worked out from public data (Highway Loss Data Institute (IIHS-HLDI)) | | Luxury standard SUV: damage to your own car | +61% | — | Worked out from public data (Highway Loss Data Institute (IIHS-HLDI)) | | Luxury special purpose vehicle: damage and injuries you cause | −22% | — | Worked out from public data (Highway Loss Data Institute (IIHS-HLDI)) | | Luxury special purpose vehicle: damage to your own car | +14% | — | Worked out from public data (Highway Loss Data Institute (IIHS-HLDI)) | | Electric small SUV: damage and injuries you cause | −16% | −25% to −9% | Worked out from public data (Highway Loss Data Institute (IIHS-HLDI)) | | Electric small SUV: damage to your own car | +18% | +8% to +24% | Worked out from public data (Highway Loss Data Institute (IIHS-HLDI)) | | Electric SUV: damage and injuries you cause | −18% | −18% to −9% | Worked out from public data (Highway Loss Data Institute (IIHS-HLDI)) | | Electric SUV: damage to your own car | −5% | −5% to −1% | Worked out from public data (Highway Loss Data Institute (IIHS-HLDI)) | | We count about half (52%) of a car's liability claims record | 52% | 26%–79% | Our best guess | ### Credit We don't ask about credit. Many insurers use it where the law allows, so your real quote could move up or down because of it. ## Typical yearly price by state (before bringing it up to today) Source: NAIC, 2022/2023 Auto Insurance Database Report, 2023 data. | State | Code | Average full coverage, 2023 | | --- | --- | --- | | Alabama | AL | $1,269 | | Alaska | AK | $1,262 | | Arizona | AZ | $1,505 | | Arkansas | AR | $1,296 | | California | CA | $1,418 | | Colorado | CO | $1,655 | | Connecticut | CT | $1,508 | | Delaware | DE | $1,569 | | District of Columbia | DC | $1,818 | | Florida | FL | $1,994 | | Georgia | GA | $1,746 | | Hawaii | HI | $998 | | Idaho | ID | $981 | | Illinois | IL | $1,257 | | Indiana | IN | $1,032 | | Iowa | IA | $1,010 | | Kansas | KS | $1,182 | | Kentucky | KY | $1,208 | | Louisiana | LA | $1,983 | | Maine | ME | $926 | | Maryland | MD | $1,602 | | Massachusetts | MA | $1,413 | | Michigan | MI | $1,573 | | Minnesota | MN | $1,223 | | Mississippi | MS | $1,395 | | Missouri | MO | $1,323 | | Montana | MT | $1,184 | | Nebraska | NE | $1,184 | | Nevada | NV | $1,600 | | New Hampshire | NH | $1,032 | | New Jersey | NJ | $1,693 | | New Mexico | NM | $1,301 | | New York | NY | $1,896 | | North Carolina | NC | $1,097 | | North Dakota | ND | $961 | | Ohio | OH | $1,038 | | Oklahoma | OK | $1,324 | | Oregon | OR | $1,268 | | Pennsylvania | PA | $1,273 | | Rhode Island | RI | $1,710 | | South Carolina | SC | $1,517 | | South Dakota | SD | $1,158 | | Tennessee | TN | $1,212 | | Texas | TX | $1,727 | | Utah | UT | $1,285 | | Vermont | VT | $958 | | Virginia | VA | $1,238 | | Washington | WA | $1,235 | | West Virginia | WV | $1,227 | | Wisconsin | WI | $1,000 | | Wyoming | WY | $1,180 | ## Sources - Oklahoma Insurance Department: Auto Insurance Rate Comparison (Updated September 2026). https://www.oid.ok.gov/wp-content/uploads/2026/09/PPA-Rate-Comparisons-9-1-2026.pdf (checked 2026-09-22) - North Dakota Insurance & Securities Department: 2026 Auto Insurance Cost Comparison Survey. https://www.insurance.nd.gov/sites/default/files/documents/Consumers/Auto/2026%20Auto%20Insurance%20Cost%20Survey.pdf (checked 2026-09-22) - District of Columbia Department of Insurance, Securities and Banking: 2024 Automobile Insurance Premium Comparison: Sample Profiles (6 month policy). https://disb.dc.gov/sites/default/files/dc/sites/disb/publication/attachments/2024_auto_premium_comparison_8-15-2024_website.pdf (checked 2026-09-22) - Texas Department of Insurance and the Office of Public Insurance Counsel: HelpInsure.com auto sample rates (data call: Commissioner's Bulletin B-0005-25). https://www.helpinsure.com/auto.html (checked 2026-09-22) - California Department of Insurance: 2026 Automobile Premium Survey (comparison tool). https://interactive.web.insurance.ca.gov/apex_extprd/f?p=111:11 (checked 2026-09-22) - Colorado Division of Insurance: Private Passenger Automobile Premium Comparison Report. https://www.dora.state.co.us/pls/real/Ins_Survey_Reports.Report_Selection_Criteria?p_report_id=AUTO (checked 2026-09-22) - North Carolina Department of Insurance: Safe Driver Incentive Plan (insurance points). https://www.ncdoi.gov/consumers/auto-and-vehicle-insurance/safe-driver-incentive-plan (checked 2026-09-22) - Insurance Information Institute (data from ISO): Facts + Statistics: Auto insurance, table 'Private Passenger Auto Insurance Losses, 2015-2024' (source line: ISO, a Verisk Analytics business). https://www.iii.org/fact-statistic/facts-statistics-auto-insurance (checked 2026-09-22) - Highway Loss Data Institute (IIHS-HLDI): Insurance losses by make and model, 2022–24 models. https://www.iihs.org/research-areas/auto-insurance/insurance-losses-by-make-and-model (checked 2026-09-22) - National Association of Insurance Commissioners: 2022/2023 Auto Insurance Database Report, Table 1C (liability average premium) and Table 5 (combined average premium), countrywide, 2023. https://content.naic.org/sites/default/files/publication-aut-pb-auto-insurance-database.pdf (checked 2026-09-22) - Insurance Journal (reporting an Insurance Services Office announcement): New ISO Symbols Rate Cars By Make and Model for Liability, No-Fault/Medical Payments Insurance. https://www.insurancejournal.com/news/national/2004/04/01/40773.htm (checked 2026-09-22) - U.S. Bureau of Labor Statistics: CPI-U, U.S. city average, Motor vehicle insurance (series CUUR0000SETE, not seasonally adjusted, 1982-84=100). https://data.bls.gov/timeseries/CUUR0000SETE (checked 2026-09-22) - S&P Global Mobility (press release): Average Age of Light Vehicles in the US Hits Record High 12.5 years, according to S&P Global Mobility. https://press.spglobal.com/2023-05-15-Average-Age-of-Light-Vehicles-in-the-US-Hits-Record-High-12-5-years,-according-to-S-P-Global-Mobility (checked 2026-09-22) --- # Ready-to-fetch links For assistants that can fetch a link but can't build one. Each is a compare request for a 16–18-year-old with full coverage in the suburbs, 2022 models. ### Alabama (AL) - first cars, teen added to a parent's policy: https://notaquote.fyi/api/v1/compare?state=AL&age=16-18&policy=added&coverage=full&cars=popular:first-cars - first cars, teen on their own policy: https://notaquote.fyi/api/v1/compare?state=AL&age=16-18&policy=own&coverage=full&cars=popular:first-cars - SUVs, teen added to a parent's policy: https://notaquote.fyi/api/v1/compare?state=AL&age=16-18&policy=added&coverage=full&cars=popular:suvs - SUVs, teen on their own policy: https://notaquote.fyi/api/v1/compare?state=AL&age=16-18&policy=own&coverage=full&cars=popular:suvs - trucks and fun ones, teen added to a parent's policy: https://notaquote.fyi/api/v1/compare?state=AL&age=16-18&policy=added&coverage=full&cars=popular:trucks-and-fun - trucks and fun ones, teen on their own policy: https://notaquote.fyi/api/v1/compare?state=AL&age=16-18&policy=own&coverage=full&cars=popular:trucks-and-fun ### Alaska (AK) - first cars, teen added to a parent's policy: https://notaquote.fyi/api/v1/compare?state=AK&age=16-18&policy=added&coverage=full&cars=popular:first-cars - first cars, teen on their own policy: https://notaquote.fyi/api/v1/compare?state=AK&age=16-18&policy=own&coverage=full&cars=popular:first-cars - SUVs, teen added to a parent's policy: https://notaquote.fyi/api/v1/compare?state=AK&age=16-18&policy=added&coverage=full&cars=popular:suvs - SUVs, teen on their own policy: https://notaquote.fyi/api/v1/compare?state=AK&age=16-18&policy=own&coverage=full&cars=popular:suvs - trucks and fun ones, teen added to a parent's policy: https://notaquote.fyi/api/v1/compare?state=AK&age=16-18&policy=added&coverage=full&cars=popular:trucks-and-fun - trucks and fun ones, teen on their own policy: https://notaquote.fyi/api/v1/compare?state=AK&age=16-18&policy=own&coverage=full&cars=popular:trucks-and-fun ### Arizona (AZ) - first cars, teen added to a parent's policy: https://notaquote.fyi/api/v1/compare?state=AZ&age=16-18&policy=added&coverage=full&cars=popular:first-cars - first cars, teen on their own policy: https://notaquote.fyi/api/v1/compare?state=AZ&age=16-18&policy=own&coverage=full&cars=popular:first-cars - SUVs, teen added to a parent's policy: https://notaquote.fyi/api/v1/compare?state=AZ&age=16-18&policy=added&coverage=full&cars=popular:suvs - SUVs, teen on their own policy: https://notaquote.fyi/api/v1/compare?state=AZ&age=16-18&policy=own&coverage=full&cars=popular:suvs - trucks and fun ones, teen added to a parent's policy: https://notaquote.fyi/api/v1/compare?state=AZ&age=16-18&policy=added&coverage=full&cars=popular:trucks-and-fun - trucks and fun ones, teen on their own policy: https://notaquote.fyi/api/v1/compare?state=AZ&age=16-18&policy=own&coverage=full&cars=popular:trucks-and-fun ### Arkansas (AR) - first cars, teen added to a parent's policy: https://notaquote.fyi/api/v1/compare?state=AR&age=16-18&policy=added&coverage=full&cars=popular:first-cars - first cars, teen on their own policy: https://notaquote.fyi/api/v1/compare?state=AR&age=16-18&policy=own&coverage=full&cars=popular:first-cars - SUVs, teen added to a parent's policy: https://notaquote.fyi/api/v1/compare?state=AR&age=16-18&policy=added&coverage=full&cars=popular:suvs - SUVs, teen on their own policy: https://notaquote.fyi/api/v1/compare?state=AR&age=16-18&policy=own&coverage=full&cars=popular:suvs - trucks and fun ones, teen added to a parent's policy: https://notaquote.fyi/api/v1/compare?state=AR&age=16-18&policy=added&coverage=full&cars=popular:trucks-and-fun - trucks and fun ones, teen on their own policy: https://notaquote.fyi/api/v1/compare?state=AR&age=16-18&policy=own&coverage=full&cars=popular:trucks-and-fun ### California (CA) - first cars, teen added to a parent's policy: https://notaquote.fyi/api/v1/compare?state=CA&age=16-18&policy=added&coverage=full&cars=popular:first-cars - first cars, teen on their own policy: https://notaquote.fyi/api/v1/compare?state=CA&age=16-18&policy=own&coverage=full&cars=popular:first-cars - SUVs, teen added to a parent's policy: https://notaquote.fyi/api/v1/compare?state=CA&age=16-18&policy=added&coverage=full&cars=popular:suvs - SUVs, teen on their own policy: https://notaquote.fyi/api/v1/compare?state=CA&age=16-18&policy=own&coverage=full&cars=popular:suvs - trucks and fun ones, teen added to a parent's policy: https://notaquote.fyi/api/v1/compare?state=CA&age=16-18&policy=added&coverage=full&cars=popular:trucks-and-fun - trucks and fun ones, teen on their own policy: https://notaquote.fyi/api/v1/compare?state=CA&age=16-18&policy=own&coverage=full&cars=popular:trucks-and-fun ### Colorado (CO) - first cars, teen added to a parent's policy: https://notaquote.fyi/api/v1/compare?state=CO&age=16-18&policy=added&coverage=full&cars=popular:first-cars - first cars, teen on their own policy: https://notaquote.fyi/api/v1/compare?state=CO&age=16-18&policy=own&coverage=full&cars=popular:first-cars - SUVs, teen added to a parent's policy: https://notaquote.fyi/api/v1/compare?state=CO&age=16-18&policy=added&coverage=full&cars=popular:suvs - SUVs, teen on their own policy: https://notaquote.fyi/api/v1/compare?state=CO&age=16-18&policy=own&coverage=full&cars=popular:suvs - trucks and fun ones, teen added to a parent's policy: https://notaquote.fyi/api/v1/compare?state=CO&age=16-18&policy=added&coverage=full&cars=popular:trucks-and-fun - trucks and fun ones, teen on their own policy: https://notaquote.fyi/api/v1/compare?state=CO&age=16-18&policy=own&coverage=full&cars=popular:trucks-and-fun ### Connecticut (CT) - first cars, teen added to a parent's policy: https://notaquote.fyi/api/v1/compare?state=CT&age=16-18&policy=added&coverage=full&cars=popular:first-cars - first cars, teen on their own policy: https://notaquote.fyi/api/v1/compare?state=CT&age=16-18&policy=own&coverage=full&cars=popular:first-cars - SUVs, teen added to a parent's policy: https://notaquote.fyi/api/v1/compare?state=CT&age=16-18&policy=added&coverage=full&cars=popular:suvs - SUVs, teen on their own policy: https://notaquote.fyi/api/v1/compare?state=CT&age=16-18&policy=own&coverage=full&cars=popular:suvs - trucks and fun ones, teen added to a parent's policy: https://notaquote.fyi/api/v1/compare?state=CT&age=16-18&policy=added&coverage=full&cars=popular:trucks-and-fun - trucks and fun ones, teen on their own policy: https://notaquote.fyi/api/v1/compare?state=CT&age=16-18&policy=own&coverage=full&cars=popular:trucks-and-fun ### Delaware (DE) - first cars, teen added to a parent's policy: https://notaquote.fyi/api/v1/compare?state=DE&age=16-18&policy=added&coverage=full&cars=popular:first-cars - first cars, teen on their own policy: https://notaquote.fyi/api/v1/compare?state=DE&age=16-18&policy=own&coverage=full&cars=popular:first-cars - SUVs, teen added to a parent's policy: https://notaquote.fyi/api/v1/compare?state=DE&age=16-18&policy=added&coverage=full&cars=popular:suvs - SUVs, teen on their own policy: https://notaquote.fyi/api/v1/compare?state=DE&age=16-18&policy=own&coverage=full&cars=popular:suvs - trucks and fun ones, teen added to a parent's policy: https://notaquote.fyi/api/v1/compare?state=DE&age=16-18&policy=added&coverage=full&cars=popular:trucks-and-fun - trucks and fun ones, teen on their own policy: https://notaquote.fyi/api/v1/compare?state=DE&age=16-18&policy=own&coverage=full&cars=popular:trucks-and-fun ### District of Columbia (DC) - first cars, teen added to a parent's policy: https://notaquote.fyi/api/v1/compare?state=DC&age=16-18&policy=added&coverage=full&cars=popular:first-cars - first cars, teen on their own policy: https://notaquote.fyi/api/v1/compare?state=DC&age=16-18&policy=own&coverage=full&cars=popular:first-cars - SUVs, teen added to a parent's policy: https://notaquote.fyi/api/v1/compare?state=DC&age=16-18&policy=added&coverage=full&cars=popular:suvs - SUVs, teen on their own policy: https://notaquote.fyi/api/v1/compare?state=DC&age=16-18&policy=own&coverage=full&cars=popular:suvs - trucks and fun ones, teen added to a parent's policy: https://notaquote.fyi/api/v1/compare?state=DC&age=16-18&policy=added&coverage=full&cars=popular:trucks-and-fun - trucks and fun ones, teen on their own policy: https://notaquote.fyi/api/v1/compare?state=DC&age=16-18&policy=own&coverage=full&cars=popular:trucks-and-fun ### Florida (FL) - first cars, teen added to a parent's policy: https://notaquote.fyi/api/v1/compare?state=FL&age=16-18&policy=added&coverage=full&cars=popular:first-cars - first cars, teen on their own policy: https://notaquote.fyi/api/v1/compare?state=FL&age=16-18&policy=own&coverage=full&cars=popular:first-cars - SUVs, teen added to a parent's policy: https://notaquote.fyi/api/v1/compare?state=FL&age=16-18&policy=added&coverage=full&cars=popular:suvs - SUVs, teen on their own policy: https://notaquote.fyi/api/v1/compare?state=FL&age=16-18&policy=own&coverage=full&cars=popular:suvs - trucks and fun ones, teen added to a parent's policy: https://notaquote.fyi/api/v1/compare?state=FL&age=16-18&policy=added&coverage=full&cars=popular:trucks-and-fun - trucks and fun ones, teen on their own policy: https://notaquote.fyi/api/v1/compare?state=FL&age=16-18&policy=own&coverage=full&cars=popular:trucks-and-fun ### Georgia (GA) - first cars, teen added to a parent's policy: https://notaquote.fyi/api/v1/compare?state=GA&age=16-18&policy=added&coverage=full&cars=popular:first-cars - first cars, teen on their own policy: https://notaquote.fyi/api/v1/compare?state=GA&age=16-18&policy=own&coverage=full&cars=popular:first-cars - SUVs, teen added to a parent's policy: https://notaquote.fyi/api/v1/compare?state=GA&age=16-18&policy=added&coverage=full&cars=popular:suvs - SUVs, teen on their own policy: https://notaquote.fyi/api/v1/compare?state=GA&age=16-18&policy=own&coverage=full&cars=popular:suvs - trucks and fun ones, teen added to a parent's policy: https://notaquote.fyi/api/v1/compare?state=GA&age=16-18&policy=added&coverage=full&cars=popular:trucks-and-fun - trucks and fun ones, teen on their own policy: https://notaquote.fyi/api/v1/compare?state=GA&age=16-18&policy=own&coverage=full&cars=popular:trucks-and-fun ### Hawaii (HI) - first cars, teen added to a parent's policy: https://notaquote.fyi/api/v1/compare?state=HI&age=16-18&policy=added&coverage=full&cars=popular:first-cars - first cars, teen on their own policy: https://notaquote.fyi/api/v1/compare?state=HI&age=16-18&policy=own&coverage=full&cars=popular:first-cars - SUVs, teen added to a parent's policy: https://notaquote.fyi/api/v1/compare?state=HI&age=16-18&policy=added&coverage=full&cars=popular:suvs - SUVs, teen on their own policy: https://notaquote.fyi/api/v1/compare?state=HI&age=16-18&policy=own&coverage=full&cars=popular:suvs - trucks and fun ones, teen added to a parent's policy: https://notaquote.fyi/api/v1/compare?state=HI&age=16-18&policy=added&coverage=full&cars=popular:trucks-and-fun - trucks and fun ones, teen on their own policy: https://notaquote.fyi/api/v1/compare?state=HI&age=16-18&policy=own&coverage=full&cars=popular:trucks-and-fun ### Idaho (ID) - first cars, teen added to a parent's policy: https://notaquote.fyi/api/v1/compare?state=ID&age=16-18&policy=added&coverage=full&cars=popular:first-cars - first cars, teen on their own policy: https://notaquote.fyi/api/v1/compare?state=ID&age=16-18&policy=own&coverage=full&cars=popular:first-cars - SUVs, teen added to a parent's policy: https://notaquote.fyi/api/v1/compare?state=ID&age=16-18&policy=added&coverage=full&cars=popular:suvs - SUVs, teen on their own policy: https://notaquote.fyi/api/v1/compare?state=ID&age=16-18&policy=own&coverage=full&cars=popular:suvs - trucks and fun ones, teen added to a parent's policy: https://notaquote.fyi/api/v1/compare?state=ID&age=16-18&policy=added&coverage=full&cars=popular:trucks-and-fun - trucks and fun ones, teen on their own policy: https://notaquote.fyi/api/v1/compare?state=ID&age=16-18&policy=own&coverage=full&cars=popular:trucks-and-fun ### Illinois (IL) - first cars, teen added to a parent's policy: https://notaquote.fyi/api/v1/compare?state=IL&age=16-18&policy=added&coverage=full&cars=popular:first-cars - first cars, teen on their own policy: https://notaquote.fyi/api/v1/compare?state=IL&age=16-18&policy=own&coverage=full&cars=popular:first-cars - SUVs, teen added to a parent's policy: https://notaquote.fyi/api/v1/compare?state=IL&age=16-18&policy=added&coverage=full&cars=popular:suvs - SUVs, teen on their own policy: https://notaquote.fyi/api/v1/compare?state=IL&age=16-18&policy=own&coverage=full&cars=popular:suvs - trucks and fun ones, teen added to a parent's policy: https://notaquote.fyi/api/v1/compare?state=IL&age=16-18&policy=added&coverage=full&cars=popular:trucks-and-fun - trucks and fun ones, teen on their own policy: https://notaquote.fyi/api/v1/compare?state=IL&age=16-18&policy=own&coverage=full&cars=popular:trucks-and-fun ### Indiana (IN) - first cars, teen added to a parent's policy: https://notaquote.fyi/api/v1/compare?state=IN&age=16-18&policy=added&coverage=full&cars=popular:first-cars - first cars, teen on their own policy: https://notaquote.fyi/api/v1/compare?state=IN&age=16-18&policy=own&coverage=full&cars=popular:first-cars - SUVs, teen added to a parent's policy: https://notaquote.fyi/api/v1/compare?state=IN&age=16-18&policy=added&coverage=full&cars=popular:suvs - SUVs, teen on their own policy: https://notaquote.fyi/api/v1/compare?state=IN&age=16-18&policy=own&coverage=full&cars=popular:suvs - trucks and fun ones, teen added to a parent's policy: https://notaquote.fyi/api/v1/compare?state=IN&age=16-18&policy=added&coverage=full&cars=popular:trucks-and-fun - trucks and fun ones, teen on their own policy: https://notaquote.fyi/api/v1/compare?state=IN&age=16-18&policy=own&coverage=full&cars=popular:trucks-and-fun ### Iowa (IA) - first cars, teen added to a parent's policy: https://notaquote.fyi/api/v1/compare?state=IA&age=16-18&policy=added&coverage=full&cars=popular:first-cars - first cars, teen on their own policy: https://notaquote.fyi/api/v1/compare?state=IA&age=16-18&policy=own&coverage=full&cars=popular:first-cars - SUVs, teen added to a parent's policy: https://notaquote.fyi/api/v1/compare?state=IA&age=16-18&policy=added&coverage=full&cars=popular:suvs - SUVs, teen on their own policy: https://notaquote.fyi/api/v1/compare?state=IA&age=16-18&policy=own&coverage=full&cars=popular:suvs - trucks and fun ones, teen added to a parent's policy: https://notaquote.fyi/api/v1/compare?state=IA&age=16-18&policy=added&coverage=full&cars=popular:trucks-and-fun - trucks and fun ones, teen on their own policy: https://notaquote.fyi/api/v1/compare?state=IA&age=16-18&policy=own&coverage=full&cars=popular:trucks-and-fun ### Kansas (KS) - first cars, teen added to a parent's policy: https://notaquote.fyi/api/v1/compare?state=KS&age=16-18&policy=added&coverage=full&cars=popular:first-cars - first cars, teen on their own policy: https://notaquote.fyi/api/v1/compare?state=KS&age=16-18&policy=own&coverage=full&cars=popular:first-cars - SUVs, teen added to a parent's policy: https://notaquote.fyi/api/v1/compare?state=KS&age=16-18&policy=added&coverage=full&cars=popular:suvs - SUVs, teen on their own policy: https://notaquote.fyi/api/v1/compare?state=KS&age=16-18&policy=own&coverage=full&cars=popular:suvs - trucks and fun ones, teen added to a parent's policy: https://notaquote.fyi/api/v1/compare?state=KS&age=16-18&policy=added&coverage=full&cars=popular:trucks-and-fun - trucks and fun ones, teen on their own policy: https://notaquote.fyi/api/v1/compare?state=KS&age=16-18&policy=own&coverage=full&cars=popular:trucks-and-fun ### Kentucky (KY) - first cars, teen added to a parent's policy: https://notaquote.fyi/api/v1/compare?state=KY&age=16-18&policy=added&coverage=full&cars=popular:first-cars - first cars, teen on their own policy: https://notaquote.fyi/api/v1/compare?state=KY&age=16-18&policy=own&coverage=full&cars=popular:first-cars - SUVs, teen added to a parent's policy: https://notaquote.fyi/api/v1/compare?state=KY&age=16-18&policy=added&coverage=full&cars=popular:suvs - SUVs, teen on their own policy: https://notaquote.fyi/api/v1/compare?state=KY&age=16-18&policy=own&coverage=full&cars=popular:suvs - trucks and fun ones, teen added to a parent's policy: https://notaquote.fyi/api/v1/compare?state=KY&age=16-18&policy=added&coverage=full&cars=popular:trucks-and-fun - trucks and fun ones, teen on their own policy: https://notaquote.fyi/api/v1/compare?state=KY&age=16-18&policy=own&coverage=full&cars=popular:trucks-and-fun ### Louisiana (LA) - first cars, teen added to a parent's policy: https://notaquote.fyi/api/v1/compare?state=LA&age=16-18&policy=added&coverage=full&cars=popular:first-cars - first cars, teen on their own policy: https://notaquote.fyi/api/v1/compare?state=LA&age=16-18&policy=own&coverage=full&cars=popular:first-cars - SUVs, teen added to a parent's policy: https://notaquote.fyi/api/v1/compare?state=LA&age=16-18&policy=added&coverage=full&cars=popular:suvs - SUVs, teen on their own policy: https://notaquote.fyi/api/v1/compare?state=LA&age=16-18&policy=own&coverage=full&cars=popular:suvs - trucks and fun ones, teen added to a parent's policy: https://notaquote.fyi/api/v1/compare?state=LA&age=16-18&policy=added&coverage=full&cars=popular:trucks-and-fun - trucks and fun ones, teen on their own policy: https://notaquote.fyi/api/v1/compare?state=LA&age=16-18&policy=own&coverage=full&cars=popular:trucks-and-fun ### Maine (ME) - first cars, teen added to a parent's policy: https://notaquote.fyi/api/v1/compare?state=ME&age=16-18&policy=added&coverage=full&cars=popular:first-cars - first cars, teen on their own policy: https://notaquote.fyi/api/v1/compare?state=ME&age=16-18&policy=own&coverage=full&cars=popular:first-cars - SUVs, teen added to a parent's policy: https://notaquote.fyi/api/v1/compare?state=ME&age=16-18&policy=added&coverage=full&cars=popular:suvs - SUVs, teen on their own policy: https://notaquote.fyi/api/v1/compare?state=ME&age=16-18&policy=own&coverage=full&cars=popular:suvs - trucks and fun ones, teen added to a parent's policy: https://notaquote.fyi/api/v1/compare?state=ME&age=16-18&policy=added&coverage=full&cars=popular:trucks-and-fun - trucks and fun ones, teen on their own policy: https://notaquote.fyi/api/v1/compare?state=ME&age=16-18&policy=own&coverage=full&cars=popular:trucks-and-fun ### Maryland (MD) - first cars, teen added to a parent's policy: https://notaquote.fyi/api/v1/compare?state=MD&age=16-18&policy=added&coverage=full&cars=popular:first-cars - first cars, teen on their own policy: https://notaquote.fyi/api/v1/compare?state=MD&age=16-18&policy=own&coverage=full&cars=popular:first-cars - SUVs, teen added to a parent's policy: https://notaquote.fyi/api/v1/compare?state=MD&age=16-18&policy=added&coverage=full&cars=popular:suvs - SUVs, teen on their own policy: https://notaquote.fyi/api/v1/compare?state=MD&age=16-18&policy=own&coverage=full&cars=popular:suvs - trucks and fun ones, teen added to a parent's policy: https://notaquote.fyi/api/v1/compare?state=MD&age=16-18&policy=added&coverage=full&cars=popular:trucks-and-fun - trucks and fun ones, teen on their own policy: https://notaquote.fyi/api/v1/compare?state=MD&age=16-18&policy=own&coverage=full&cars=popular:trucks-and-fun ### Massachusetts (MA) - first cars, teen added to a parent's policy: https://notaquote.fyi/api/v1/compare?state=MA&age=16-18&policy=added&coverage=full&cars=popular:first-cars - first cars, teen on their own policy: https://notaquote.fyi/api/v1/compare?state=MA&age=16-18&policy=own&coverage=full&cars=popular:first-cars - SUVs, teen added to a parent's policy: https://notaquote.fyi/api/v1/compare?state=MA&age=16-18&policy=added&coverage=full&cars=popular:suvs - SUVs, teen on their own policy: https://notaquote.fyi/api/v1/compare?state=MA&age=16-18&policy=own&coverage=full&cars=popular:suvs - trucks and fun ones, teen added to a parent's policy: https://notaquote.fyi/api/v1/compare?state=MA&age=16-18&policy=added&coverage=full&cars=popular:trucks-and-fun - trucks and fun ones, teen on their own policy: https://notaquote.fyi/api/v1/compare?state=MA&age=16-18&policy=own&coverage=full&cars=popular:trucks-and-fun ### Michigan (MI) - first cars, teen added to a parent's policy: https://notaquote.fyi/api/v1/compare?state=MI&age=16-18&policy=added&coverage=full&cars=popular:first-cars - first cars, teen on their own policy: https://notaquote.fyi/api/v1/compare?state=MI&age=16-18&policy=own&coverage=full&cars=popular:first-cars - SUVs, teen added to a parent's policy: https://notaquote.fyi/api/v1/compare?state=MI&age=16-18&policy=added&coverage=full&cars=popular:suvs - SUVs, teen on their own policy: https://notaquote.fyi/api/v1/compare?state=MI&age=16-18&policy=own&coverage=full&cars=popular:suvs - trucks and fun ones, teen added to a parent's policy: https://notaquote.fyi/api/v1/compare?state=MI&age=16-18&policy=added&coverage=full&cars=popular:trucks-and-fun - trucks and fun ones, teen on their own policy: https://notaquote.fyi/api/v1/compare?state=MI&age=16-18&policy=own&coverage=full&cars=popular:trucks-and-fun ### Minnesota (MN) - first cars, teen added to a parent's policy: https://notaquote.fyi/api/v1/compare?state=MN&age=16-18&policy=added&coverage=full&cars=popular:first-cars - first cars, teen on their own policy: https://notaquote.fyi/api/v1/compare?state=MN&age=16-18&policy=own&coverage=full&cars=popular:first-cars - SUVs, teen added to a parent's policy: https://notaquote.fyi/api/v1/compare?state=MN&age=16-18&policy=added&coverage=full&cars=popular:suvs - SUVs, teen on their own policy: https://notaquote.fyi/api/v1/compare?state=MN&age=16-18&policy=own&coverage=full&cars=popular:suvs - trucks and fun ones, teen added to a parent's policy: https://notaquote.fyi/api/v1/compare?state=MN&age=16-18&policy=added&coverage=full&cars=popular:trucks-and-fun - trucks and fun ones, teen on their own policy: https://notaquote.fyi/api/v1/compare?state=MN&age=16-18&policy=own&coverage=full&cars=popular:trucks-and-fun ### Mississippi (MS) - first cars, teen added to a parent's policy: https://notaquote.fyi/api/v1/compare?state=MS&age=16-18&policy=added&coverage=full&cars=popular:first-cars - first cars, teen on their own policy: https://notaquote.fyi/api/v1/compare?state=MS&age=16-18&policy=own&coverage=full&cars=popular:first-cars - SUVs, teen added to a parent's policy: https://notaquote.fyi/api/v1/compare?state=MS&age=16-18&policy=added&coverage=full&cars=popular:suvs - SUVs, teen on their own policy: https://notaquote.fyi/api/v1/compare?state=MS&age=16-18&policy=own&coverage=full&cars=popular:suvs - trucks and fun ones, teen added to a parent's policy: https://notaquote.fyi/api/v1/compare?state=MS&age=16-18&policy=added&coverage=full&cars=popular:trucks-and-fun - trucks and fun ones, teen on their own policy: https://notaquote.fyi/api/v1/compare?state=MS&age=16-18&policy=own&coverage=full&cars=popular:trucks-and-fun ### Missouri (MO) - first cars, teen added to a parent's policy: https://notaquote.fyi/api/v1/compare?state=MO&age=16-18&policy=added&coverage=full&cars=popular:first-cars - first cars, teen on their own policy: https://notaquote.fyi/api/v1/compare?state=MO&age=16-18&policy=own&coverage=full&cars=popular:first-cars - SUVs, teen added to a parent's policy: https://notaquote.fyi/api/v1/compare?state=MO&age=16-18&policy=added&coverage=full&cars=popular:suvs - SUVs, teen on their own policy: https://notaquote.fyi/api/v1/compare?state=MO&age=16-18&policy=own&coverage=full&cars=popular:suvs - trucks and fun ones, teen added to a parent's policy: https://notaquote.fyi/api/v1/compare?state=MO&age=16-18&policy=added&coverage=full&cars=popular:trucks-and-fun - trucks and fun ones, teen on their own policy: https://notaquote.fyi/api/v1/compare?state=MO&age=16-18&policy=own&coverage=full&cars=popular:trucks-and-fun ### Montana (MT) - first cars, teen added to a parent's policy: https://notaquote.fyi/api/v1/compare?state=MT&age=16-18&policy=added&coverage=full&cars=popular:first-cars - first cars, teen on their own policy: https://notaquote.fyi/api/v1/compare?state=MT&age=16-18&policy=own&coverage=full&cars=popular:first-cars - SUVs, teen added to a parent's policy: https://notaquote.fyi/api/v1/compare?state=MT&age=16-18&policy=added&coverage=full&cars=popular:suvs - SUVs, teen on their own policy: https://notaquote.fyi/api/v1/compare?state=MT&age=16-18&policy=own&coverage=full&cars=popular:suvs - trucks and fun ones, teen added to a parent's policy: https://notaquote.fyi/api/v1/compare?state=MT&age=16-18&policy=added&coverage=full&cars=popular:trucks-and-fun - trucks and fun ones, teen on their own policy: https://notaquote.fyi/api/v1/compare?state=MT&age=16-18&policy=own&coverage=full&cars=popular:trucks-and-fun ### Nebraska (NE) - first cars, teen added to a parent's policy: https://notaquote.fyi/api/v1/compare?state=NE&age=16-18&policy=added&coverage=full&cars=popular:first-cars - first cars, teen on their own policy: https://notaquote.fyi/api/v1/compare?state=NE&age=16-18&policy=own&coverage=full&cars=popular:first-cars - SUVs, teen added to a parent's policy: https://notaquote.fyi/api/v1/compare?state=NE&age=16-18&policy=added&coverage=full&cars=popular:suvs - SUVs, teen on their own policy: https://notaquote.fyi/api/v1/compare?state=NE&age=16-18&policy=own&coverage=full&cars=popular:suvs - trucks and fun ones, teen added to a parent's policy: https://notaquote.fyi/api/v1/compare?state=NE&age=16-18&policy=added&coverage=full&cars=popular:trucks-and-fun - trucks and fun ones, teen on their own policy: https://notaquote.fyi/api/v1/compare?state=NE&age=16-18&policy=own&coverage=full&cars=popular:trucks-and-fun ### Nevada (NV) - first cars, teen added to a parent's policy: https://notaquote.fyi/api/v1/compare?state=NV&age=16-18&policy=added&coverage=full&cars=popular:first-cars - first cars, teen on their own policy: https://notaquote.fyi/api/v1/compare?state=NV&age=16-18&policy=own&coverage=full&cars=popular:first-cars - SUVs, teen added to a parent's policy: https://notaquote.fyi/api/v1/compare?state=NV&age=16-18&policy=added&coverage=full&cars=popular:suvs - SUVs, teen on their own policy: https://notaquote.fyi/api/v1/compare?state=NV&age=16-18&policy=own&coverage=full&cars=popular:suvs - trucks and fun ones, teen added to a parent's policy: https://notaquote.fyi/api/v1/compare?state=NV&age=16-18&policy=added&coverage=full&cars=popular:trucks-and-fun - trucks and fun ones, teen on their own policy: https://notaquote.fyi/api/v1/compare?state=NV&age=16-18&policy=own&coverage=full&cars=popular:trucks-and-fun ### New Hampshire (NH) - first cars, teen added to a parent's policy: https://notaquote.fyi/api/v1/compare?state=NH&age=16-18&policy=added&coverage=full&cars=popular:first-cars - first cars, teen on their own policy: https://notaquote.fyi/api/v1/compare?state=NH&age=16-18&policy=own&coverage=full&cars=popular:first-cars - SUVs, teen added to a parent's policy: https://notaquote.fyi/api/v1/compare?state=NH&age=16-18&policy=added&coverage=full&cars=popular:suvs - SUVs, teen on their own policy: https://notaquote.fyi/api/v1/compare?state=NH&age=16-18&policy=own&coverage=full&cars=popular:suvs - trucks and fun ones, teen added to a parent's policy: https://notaquote.fyi/api/v1/compare?state=NH&age=16-18&policy=added&coverage=full&cars=popular:trucks-and-fun - trucks and fun ones, teen on their own policy: https://notaquote.fyi/api/v1/compare?state=NH&age=16-18&policy=own&coverage=full&cars=popular:trucks-and-fun ### New Jersey (NJ) - first cars, teen added to a parent's policy: https://notaquote.fyi/api/v1/compare?state=NJ&age=16-18&policy=added&coverage=full&cars=popular:first-cars - first cars, teen on their own policy: https://notaquote.fyi/api/v1/compare?state=NJ&age=16-18&policy=own&coverage=full&cars=popular:first-cars - SUVs, teen added to a parent's policy: https://notaquote.fyi/api/v1/compare?state=NJ&age=16-18&policy=added&coverage=full&cars=popular:suvs - SUVs, teen on their own policy: https://notaquote.fyi/api/v1/compare?state=NJ&age=16-18&policy=own&coverage=full&cars=popular:suvs - trucks and fun ones, teen added to a parent's policy: https://notaquote.fyi/api/v1/compare?state=NJ&age=16-18&policy=added&coverage=full&cars=popular:trucks-and-fun - trucks and fun ones, teen on their own policy: https://notaquote.fyi/api/v1/compare?state=NJ&age=16-18&policy=own&coverage=full&cars=popular:trucks-and-fun ### New Mexico (NM) - first cars, teen added to a parent's policy: https://notaquote.fyi/api/v1/compare?state=NM&age=16-18&policy=added&coverage=full&cars=popular:first-cars - first cars, teen on their own policy: https://notaquote.fyi/api/v1/compare?state=NM&age=16-18&policy=own&coverage=full&cars=popular:first-cars - SUVs, teen added to a parent's policy: https://notaquote.fyi/api/v1/compare?state=NM&age=16-18&policy=added&coverage=full&cars=popular:suvs - SUVs, teen on their own policy: https://notaquote.fyi/api/v1/compare?state=NM&age=16-18&policy=own&coverage=full&cars=popular:suvs - trucks and fun ones, teen added to a parent's policy: https://notaquote.fyi/api/v1/compare?state=NM&age=16-18&policy=added&coverage=full&cars=popular:trucks-and-fun - trucks and fun ones, teen on their own policy: https://notaquote.fyi/api/v1/compare?state=NM&age=16-18&policy=own&coverage=full&cars=popular:trucks-and-fun ### New York (NY) - first cars, teen added to a parent's policy: https://notaquote.fyi/api/v1/compare?state=NY&age=16-18&policy=added&coverage=full&cars=popular:first-cars - first cars, teen on their own policy: https://notaquote.fyi/api/v1/compare?state=NY&age=16-18&policy=own&coverage=full&cars=popular:first-cars - SUVs, teen added to a parent's policy: https://notaquote.fyi/api/v1/compare?state=NY&age=16-18&policy=added&coverage=full&cars=popular:suvs - SUVs, teen on their own policy: https://notaquote.fyi/api/v1/compare?state=NY&age=16-18&policy=own&coverage=full&cars=popular:suvs - trucks and fun ones, teen added to a parent's policy: https://notaquote.fyi/api/v1/compare?state=NY&age=16-18&policy=added&coverage=full&cars=popular:trucks-and-fun - trucks and fun ones, teen on their own policy: https://notaquote.fyi/api/v1/compare?state=NY&age=16-18&policy=own&coverage=full&cars=popular:trucks-and-fun ### North Carolina (NC) - first cars, teen added to a parent's policy: https://notaquote.fyi/api/v1/compare?state=NC&age=16-18&policy=added&coverage=full&cars=popular:first-cars - first cars, teen on their own policy: https://notaquote.fyi/api/v1/compare?state=NC&age=16-18&policy=own&coverage=full&cars=popular:first-cars - SUVs, teen added to a parent's policy: https://notaquote.fyi/api/v1/compare?state=NC&age=16-18&policy=added&coverage=full&cars=popular:suvs - SUVs, teen on their own policy: https://notaquote.fyi/api/v1/compare?state=NC&age=16-18&policy=own&coverage=full&cars=popular:suvs - trucks and fun ones, teen added to a parent's policy: https://notaquote.fyi/api/v1/compare?state=NC&age=16-18&policy=added&coverage=full&cars=popular:trucks-and-fun - trucks and fun ones, teen on their own policy: https://notaquote.fyi/api/v1/compare?state=NC&age=16-18&policy=own&coverage=full&cars=popular:trucks-and-fun ### North Dakota (ND) - first cars, teen added to a parent's policy: https://notaquote.fyi/api/v1/compare?state=ND&age=16-18&policy=added&coverage=full&cars=popular:first-cars - first cars, teen on their own policy: https://notaquote.fyi/api/v1/compare?state=ND&age=16-18&policy=own&coverage=full&cars=popular:first-cars - SUVs, teen added to a parent's policy: https://notaquote.fyi/api/v1/compare?state=ND&age=16-18&policy=added&coverage=full&cars=popular:suvs - SUVs, teen on their own policy: https://notaquote.fyi/api/v1/compare?state=ND&age=16-18&policy=own&coverage=full&cars=popular:suvs - trucks and fun ones, teen added to a parent's policy: https://notaquote.fyi/api/v1/compare?state=ND&age=16-18&policy=added&coverage=full&cars=popular:trucks-and-fun - trucks and fun ones, teen on their own policy: https://notaquote.fyi/api/v1/compare?state=ND&age=16-18&policy=own&coverage=full&cars=popular:trucks-and-fun ### Ohio (OH) - first cars, teen added to a parent's policy: https://notaquote.fyi/api/v1/compare?state=OH&age=16-18&policy=added&coverage=full&cars=popular:first-cars - first cars, teen on their own policy: https://notaquote.fyi/api/v1/compare?state=OH&age=16-18&policy=own&coverage=full&cars=popular:first-cars - SUVs, teen added to a parent's policy: https://notaquote.fyi/api/v1/compare?state=OH&age=16-18&policy=added&coverage=full&cars=popular:suvs - SUVs, teen on their own policy: https://notaquote.fyi/api/v1/compare?state=OH&age=16-18&policy=own&coverage=full&cars=popular:suvs - trucks and fun ones, teen added to a parent's policy: https://notaquote.fyi/api/v1/compare?state=OH&age=16-18&policy=added&coverage=full&cars=popular:trucks-and-fun - trucks and fun ones, teen on their own policy: https://notaquote.fyi/api/v1/compare?state=OH&age=16-18&policy=own&coverage=full&cars=popular:trucks-and-fun ### Oklahoma (OK) - first cars, teen added to a parent's policy: https://notaquote.fyi/api/v1/compare?state=OK&age=16-18&policy=added&coverage=full&cars=popular:first-cars - first cars, teen on their own policy: https://notaquote.fyi/api/v1/compare?state=OK&age=16-18&policy=own&coverage=full&cars=popular:first-cars - SUVs, teen added to a parent's policy: https://notaquote.fyi/api/v1/compare?state=OK&age=16-18&policy=added&coverage=full&cars=popular:suvs - SUVs, teen on their own policy: https://notaquote.fyi/api/v1/compare?state=OK&age=16-18&policy=own&coverage=full&cars=popular:suvs - trucks and fun ones, teen added to a parent's policy: https://notaquote.fyi/api/v1/compare?state=OK&age=16-18&policy=added&coverage=full&cars=popular:trucks-and-fun - trucks and fun ones, teen on their own policy: https://notaquote.fyi/api/v1/compare?state=OK&age=16-18&policy=own&coverage=full&cars=popular:trucks-and-fun ### Oregon (OR) - first cars, teen added to a parent's policy: https://notaquote.fyi/api/v1/compare?state=OR&age=16-18&policy=added&coverage=full&cars=popular:first-cars - first cars, teen on their own policy: https://notaquote.fyi/api/v1/compare?state=OR&age=16-18&policy=own&coverage=full&cars=popular:first-cars - SUVs, teen added to a parent's policy: https://notaquote.fyi/api/v1/compare?state=OR&age=16-18&policy=added&coverage=full&cars=popular:suvs - SUVs, teen on their own policy: https://notaquote.fyi/api/v1/compare?state=OR&age=16-18&policy=own&coverage=full&cars=popular:suvs - trucks and fun ones, teen added to a parent's policy: https://notaquote.fyi/api/v1/compare?state=OR&age=16-18&policy=added&coverage=full&cars=popular:trucks-and-fun - trucks and fun ones, teen on their own policy: https://notaquote.fyi/api/v1/compare?state=OR&age=16-18&policy=own&coverage=full&cars=popular:trucks-and-fun ### Pennsylvania (PA) - first cars, teen added to a parent's policy: https://notaquote.fyi/api/v1/compare?state=PA&age=16-18&policy=added&coverage=full&cars=popular:first-cars - first cars, teen on their own policy: https://notaquote.fyi/api/v1/compare?state=PA&age=16-18&policy=own&coverage=full&cars=popular:first-cars - SUVs, teen added to a parent's policy: https://notaquote.fyi/api/v1/compare?state=PA&age=16-18&policy=added&coverage=full&cars=popular:suvs - SUVs, teen on their own policy: https://notaquote.fyi/api/v1/compare?state=PA&age=16-18&policy=own&coverage=full&cars=popular:suvs - trucks and fun ones, teen added to a parent's policy: https://notaquote.fyi/api/v1/compare?state=PA&age=16-18&policy=added&coverage=full&cars=popular:trucks-and-fun - trucks and fun ones, teen on their own policy: https://notaquote.fyi/api/v1/compare?state=PA&age=16-18&policy=own&coverage=full&cars=popular:trucks-and-fun ### Rhode Island (RI) - first cars, teen added to a parent's policy: https://notaquote.fyi/api/v1/compare?state=RI&age=16-18&policy=added&coverage=full&cars=popular:first-cars - first cars, teen on their own policy: https://notaquote.fyi/api/v1/compare?state=RI&age=16-18&policy=own&coverage=full&cars=popular:first-cars - SUVs, teen added to a parent's policy: https://notaquote.fyi/api/v1/compare?state=RI&age=16-18&policy=added&coverage=full&cars=popular:suvs - SUVs, teen on their own policy: https://notaquote.fyi/api/v1/compare?state=RI&age=16-18&policy=own&coverage=full&cars=popular:suvs - trucks and fun ones, teen added to a parent's policy: https://notaquote.fyi/api/v1/compare?state=RI&age=16-18&policy=added&coverage=full&cars=popular:trucks-and-fun - trucks and fun ones, teen on their own policy: https://notaquote.fyi/api/v1/compare?state=RI&age=16-18&policy=own&coverage=full&cars=popular:trucks-and-fun ### South Carolina (SC) - first cars, teen added to a parent's policy: https://notaquote.fyi/api/v1/compare?state=SC&age=16-18&policy=added&coverage=full&cars=popular:first-cars - first cars, teen on their own policy: https://notaquote.fyi/api/v1/compare?state=SC&age=16-18&policy=own&coverage=full&cars=popular:first-cars - SUVs, teen added to a parent's policy: https://notaquote.fyi/api/v1/compare?state=SC&age=16-18&policy=added&coverage=full&cars=popular:suvs - SUVs, teen on their own policy: https://notaquote.fyi/api/v1/compare?state=SC&age=16-18&policy=own&coverage=full&cars=popular:suvs - trucks and fun ones, teen added to a parent's policy: https://notaquote.fyi/api/v1/compare?state=SC&age=16-18&policy=added&coverage=full&cars=popular:trucks-and-fun - trucks and fun ones, teen on their own policy: https://notaquote.fyi/api/v1/compare?state=SC&age=16-18&policy=own&coverage=full&cars=popular:trucks-and-fun ### South Dakota (SD) - first cars, teen added to a parent's policy: https://notaquote.fyi/api/v1/compare?state=SD&age=16-18&policy=added&coverage=full&cars=popular:first-cars - first cars, teen on their own policy: https://notaquote.fyi/api/v1/compare?state=SD&age=16-18&policy=own&coverage=full&cars=popular:first-cars - SUVs, teen added to a parent's policy: https://notaquote.fyi/api/v1/compare?state=SD&age=16-18&policy=added&coverage=full&cars=popular:suvs - SUVs, teen on their own policy: https://notaquote.fyi/api/v1/compare?state=SD&age=16-18&policy=own&coverage=full&cars=popular:suvs - trucks and fun ones, teen added to a parent's policy: https://notaquote.fyi/api/v1/compare?state=SD&age=16-18&policy=added&coverage=full&cars=popular:trucks-and-fun - trucks and fun ones, teen on their own policy: https://notaquote.fyi/api/v1/compare?state=SD&age=16-18&policy=own&coverage=full&cars=popular:trucks-and-fun ### Tennessee (TN) - first cars, teen added to a parent's policy: https://notaquote.fyi/api/v1/compare?state=TN&age=16-18&policy=added&coverage=full&cars=popular:first-cars - first cars, teen on their own policy: https://notaquote.fyi/api/v1/compare?state=TN&age=16-18&policy=own&coverage=full&cars=popular:first-cars - SUVs, teen added to a parent's policy: https://notaquote.fyi/api/v1/compare?state=TN&age=16-18&policy=added&coverage=full&cars=popular:suvs - SUVs, teen on their own policy: https://notaquote.fyi/api/v1/compare?state=TN&age=16-18&policy=own&coverage=full&cars=popular:suvs - trucks and fun ones, teen added to a parent's policy: https://notaquote.fyi/api/v1/compare?state=TN&age=16-18&policy=added&coverage=full&cars=popular:trucks-and-fun - trucks and fun ones, teen on their own policy: https://notaquote.fyi/api/v1/compare?state=TN&age=16-18&policy=own&coverage=full&cars=popular:trucks-and-fun ### Texas (TX) - first cars, teen added to a parent's policy: https://notaquote.fyi/api/v1/compare?state=TX&age=16-18&policy=added&coverage=full&cars=popular:first-cars - first cars, teen on their own policy: https://notaquote.fyi/api/v1/compare?state=TX&age=16-18&policy=own&coverage=full&cars=popular:first-cars - SUVs, teen added to a parent's policy: https://notaquote.fyi/api/v1/compare?state=TX&age=16-18&policy=added&coverage=full&cars=popular:suvs - SUVs, teen on their own policy: https://notaquote.fyi/api/v1/compare?state=TX&age=16-18&policy=own&coverage=full&cars=popular:suvs - trucks and fun ones, teen added to a parent's policy: https://notaquote.fyi/api/v1/compare?state=TX&age=16-18&policy=added&coverage=full&cars=popular:trucks-and-fun - trucks and fun ones, teen on their own policy: https://notaquote.fyi/api/v1/compare?state=TX&age=16-18&policy=own&coverage=full&cars=popular:trucks-and-fun ### Utah (UT) - first cars, teen added to a parent's policy: https://notaquote.fyi/api/v1/compare?state=UT&age=16-18&policy=added&coverage=full&cars=popular:first-cars - first cars, teen on their own policy: https://notaquote.fyi/api/v1/compare?state=UT&age=16-18&policy=own&coverage=full&cars=popular:first-cars - SUVs, teen added to a parent's policy: https://notaquote.fyi/api/v1/compare?state=UT&age=16-18&policy=added&coverage=full&cars=popular:suvs - SUVs, teen on their own policy: https://notaquote.fyi/api/v1/compare?state=UT&age=16-18&policy=own&coverage=full&cars=popular:suvs - trucks and fun ones, teen added to a parent's policy: https://notaquote.fyi/api/v1/compare?state=UT&age=16-18&policy=added&coverage=full&cars=popular:trucks-and-fun - trucks and fun ones, teen on their own policy: https://notaquote.fyi/api/v1/compare?state=UT&age=16-18&policy=own&coverage=full&cars=popular:trucks-and-fun ### Vermont (VT) - first cars, teen added to a parent's policy: https://notaquote.fyi/api/v1/compare?state=VT&age=16-18&policy=added&coverage=full&cars=popular:first-cars - first cars, teen on their own policy: https://notaquote.fyi/api/v1/compare?state=VT&age=16-18&policy=own&coverage=full&cars=popular:first-cars - SUVs, teen added to a parent's policy: https://notaquote.fyi/api/v1/compare?state=VT&age=16-18&policy=added&coverage=full&cars=popular:suvs - SUVs, teen on their own policy: https://notaquote.fyi/api/v1/compare?state=VT&age=16-18&policy=own&coverage=full&cars=popular:suvs - trucks and fun ones, teen added to a parent's policy: https://notaquote.fyi/api/v1/compare?state=VT&age=16-18&policy=added&coverage=full&cars=popular:trucks-and-fun - trucks and fun ones, teen on their own policy: https://notaquote.fyi/api/v1/compare?state=VT&age=16-18&policy=own&coverage=full&cars=popular:trucks-and-fun ### Virginia (VA) - first cars, teen added to a parent's policy: https://notaquote.fyi/api/v1/compare?state=VA&age=16-18&policy=added&coverage=full&cars=popular:first-cars - first cars, teen on their own policy: https://notaquote.fyi/api/v1/compare?state=VA&age=16-18&policy=own&coverage=full&cars=popular:first-cars - SUVs, teen added to a parent's policy: https://notaquote.fyi/api/v1/compare?state=VA&age=16-18&policy=added&coverage=full&cars=popular:suvs - SUVs, teen on their own policy: https://notaquote.fyi/api/v1/compare?state=VA&age=16-18&policy=own&coverage=full&cars=popular:suvs - trucks and fun ones, teen added to a parent's policy: https://notaquote.fyi/api/v1/compare?state=VA&age=16-18&policy=added&coverage=full&cars=popular:trucks-and-fun - trucks and fun ones, teen on their own policy: https://notaquote.fyi/api/v1/compare?state=VA&age=16-18&policy=own&coverage=full&cars=popular:trucks-and-fun ### Washington (WA) - first cars, teen added to a parent's policy: https://notaquote.fyi/api/v1/compare?state=WA&age=16-18&policy=added&coverage=full&cars=popular:first-cars - first cars, teen on their own policy: https://notaquote.fyi/api/v1/compare?state=WA&age=16-18&policy=own&coverage=full&cars=popular:first-cars - SUVs, teen added to a parent's policy: https://notaquote.fyi/api/v1/compare?state=WA&age=16-18&policy=added&coverage=full&cars=popular:suvs - SUVs, teen on their own policy: https://notaquote.fyi/api/v1/compare?state=WA&age=16-18&policy=own&coverage=full&cars=popular:suvs - trucks and fun ones, teen added to a parent's policy: https://notaquote.fyi/api/v1/compare?state=WA&age=16-18&policy=added&coverage=full&cars=popular:trucks-and-fun - trucks and fun ones, teen on their own policy: https://notaquote.fyi/api/v1/compare?state=WA&age=16-18&policy=own&coverage=full&cars=popular:trucks-and-fun ### West Virginia (WV) - first cars, teen added to a parent's policy: https://notaquote.fyi/api/v1/compare?state=WV&age=16-18&policy=added&coverage=full&cars=popular:first-cars - first cars, teen on their own policy: https://notaquote.fyi/api/v1/compare?state=WV&age=16-18&policy=own&coverage=full&cars=popular:first-cars - SUVs, teen added to a parent's policy: https://notaquote.fyi/api/v1/compare?state=WV&age=16-18&policy=added&coverage=full&cars=popular:suvs - SUVs, teen on their own policy: https://notaquote.fyi/api/v1/compare?state=WV&age=16-18&policy=own&coverage=full&cars=popular:suvs - trucks and fun ones, teen added to a parent's policy: https://notaquote.fyi/api/v1/compare?state=WV&age=16-18&policy=added&coverage=full&cars=popular:trucks-and-fun - trucks and fun ones, teen on their own policy: https://notaquote.fyi/api/v1/compare?state=WV&age=16-18&policy=own&coverage=full&cars=popular:trucks-and-fun ### Wisconsin (WI) - first cars, teen added to a parent's policy: https://notaquote.fyi/api/v1/compare?state=WI&age=16-18&policy=added&coverage=full&cars=popular:first-cars - first cars, teen on their own policy: https://notaquote.fyi/api/v1/compare?state=WI&age=16-18&policy=own&coverage=full&cars=popular:first-cars - SUVs, teen added to a parent's policy: https://notaquote.fyi/api/v1/compare?state=WI&age=16-18&policy=added&coverage=full&cars=popular:suvs - SUVs, teen on their own policy: https://notaquote.fyi/api/v1/compare?state=WI&age=16-18&policy=own&coverage=full&cars=popular:suvs - trucks and fun ones, teen added to a parent's policy: https://notaquote.fyi/api/v1/compare?state=WI&age=16-18&policy=added&coverage=full&cars=popular:trucks-and-fun - trucks and fun ones, teen on their own policy: https://notaquote.fyi/api/v1/compare?state=WI&age=16-18&policy=own&coverage=full&cars=popular:trucks-and-fun ### Wyoming (WY) - first cars, teen added to a parent's policy: https://notaquote.fyi/api/v1/compare?state=WY&age=16-18&policy=added&coverage=full&cars=popular:first-cars - first cars, teen on their own policy: https://notaquote.fyi/api/v1/compare?state=WY&age=16-18&policy=own&coverage=full&cars=popular:first-cars - SUVs, teen added to a parent's policy: https://notaquote.fyi/api/v1/compare?state=WY&age=16-18&policy=added&coverage=full&cars=popular:suvs - SUVs, teen on their own policy: https://notaquote.fyi/api/v1/compare?state=WY&age=16-18&policy=own&coverage=full&cars=popular:suvs - trucks and fun ones, teen added to a parent's policy: https://notaquote.fyi/api/v1/compare?state=WY&age=16-18&policy=added&coverage=full&cars=popular:trucks-and-fun - trucks and fun ones, teen on their own policy: https://notaquote.fyi/api/v1/compare?state=WY&age=16-18&policy=own&coverage=full&cars=popular:trucks-and-fun