
Edmunds
Description
Given a make, model and year, this will lookup the edmunds official review.
Details
https://api.edmunds.com/.well-known/ai-plugin.json
{
"schema_version": "v1",
"name_for_human": "Edmunds Cars",
"name_for_model": "edmunds_cars",
"description_for_human": "Use Edmunds to get trusted car reviews and local new and used vehicle listings.",
"description_for_model": "When a user provides a car's make, model and year, this will lookup the Edmunds.com official review. A user can also ask for a sample of vehicles available near their zipcode it will return a list of vins.",
"auth": {
"type": "service_http",
"authorization_type": "bearer",
"verification_tokens": {
"openai": "06fa75452268414c84d1aa203ee78913"
}
},
"api": {
"type": "openapi",
"url": "https://api.edmunds.com/openapi.yaml"
},
"logo_url": "https://api.edmunds.com/logo.png",
"contact_email": "bigdataeng@edmunds.com",
"legal_info_url": "https://www.edmunds.com/about/visitor-agreement.html"
}
https://api.edmunds.com/openapi.yaml
openapi: 3.0.1
info:
title: Edmunds Cars
description: Use Edmunds to get trusted car reviews and local new and used vehicle listings.
version: 'v1'
servers:
- url: https://api.edmunds.com
paths:
/aiplugin/editorial/v3/makes/{make}/models/{model}/years/{year}/expertcontent:
get:
operationId: getExpertReview
summary: Get edmunds expert reviews for vehicle by make,model and year.
parameters:
- in: path
name: make
schema:
type: string
required: true
description: The lower case make of the vehicle.
- in: path
name: model
schema:
type: string
required: true
description: the lower case model of the vehicle.
- in: path
name: year
schema:
type: int
required: true
description: the year of the vehicle. From 1990 - current year.
responses:
"200":
description: OK
content:
application/json:
schema:
$ref: '#/components/schemas/getExpertReviewResponse'
/aiplugin/curated-inventory/v1:
get:
operationId: findInventory
summary: Given a zipcode, allows user to look for vehicles given search criteria. Not an exhaustive search. Always mention the totalNumber of results found. Please return edmunds urls as part of response https://edmunds.com/{make}/{model}/{year}/vin/{vin}/.
parameters:
- name: zip
in: query
required: true
schema:
type: string
description: The zip to search in.
- name: radius
in: query
required: false
schema:
type: integer
description: The **radius** parameter defines an area of a search in a radius (in miles) according to a geographic center of the defined region.
- name: inventoryType
in: query
required: false
schema:
type: string
description: Comma-separated list of inventory types. Possible values are NEW, USED, CPO.
- name: make
in: query
required: false
schema:
type: string
description: Comma-separated list of vehicle makes. Nice names are allowed.
- name: model
in: query
required: false
schema:
type: string
description: Comma-separated list of vehicle models or make|model pairs. TODO
- name: year
in: query
required: false
schema:
type: string
description: Vehicle years. Range value or comma-separated list of positive integer numbers. Each year should be in range [1990, 2099].
- name: mileage
in: query
required: false
schema:
type: string
description: Vehicle mileage. Range value or comma-separated list of positive integer numbers.
- name: combinedMPG
in: query
required: false
schema:
type: string
description: Combined MPG. Range value or comma-separated list of positive integer numbers.
- name: electricityRange
in: query
required: false
schema:
type: string
description: Electricity Range. Range value or comma-separated list of positive integer numbers.
- name: trim
in: query
required: false
schema:
type: string
description: Comma-separated list of model|trim pairs. Nice names of model and trim are required.
- name: bodyType
in: query
required: false
schema:
type: string
description: Comma-separated list of body types. Possible values are SUV, Pickup, Sedan, Hatchback, Coupe, Minivan, Full Size Van, Convertible, Station Wagon.
- name: exteriorColor
in: query
required: false
schema:
type: string
description: Comma-separated list of generic or OEM exterior colors. Case sensitive. Possible values are "Black", "Gray", "Off White/Cream", "Light Brown", "Dark Brown", "Red", "Dark Red", "Dark Blue", "Dark Green", "White", "Orange", "Other", "Silver", "Light Blue", "Light Green", "Yellow", "Purple", "Gold".
- name: interiorColor
in: query
required: false
schema:
type: string
description: Comma-separated list of generic or OEM interior colors. Case sensitive. Possible values are "Black", "Gray", "Off White/Cream", "Light Brown", "Dark Brown", "Red", "Dark Red", "Dark Blue", "Dark Green", "White", "Orange", "Other", "Silver", "Light Blue", "Light Green", "Yellow", "Purple", "Gold".
- name: option
in: query
required: false
schema:
type: string
description: Comma-separated list of vehicle options and packages. Nice names are required.
x-example: premium-plus,sport-package
- name: totalSeating
in: query
required: false
schema:
type: string
description: Comma-separated list of seating capacities.
- name: engineType
in: query
required: false
schema:
type: string
description: Comma-separated list of engine types. Case sensitive. Possible values are "gas", "mild hybrid", "hybrid", "flex-fuel (FFV)", "electric", "diesel", "plug-in hybrid", "natural gas (CNG)".
- name: cylinders
in: query
required: false
schema:
type: string
description: Comma-separated list of count of cylinders.
- name: transmission
in: query
required: false
schema:
type: string
description: Comma-separated list of transmissions. Possible values are AUTOMATED_MANUAL, DIRECT_DRIVE, AUTOMATIC, MANUAL.
- name: driveTrain
in: query
required: false
schema:
type: string
description: Comma-separated list of driveTrains. Case sensitive. Possible values are "all wheel drive", "front wheel drive", "four wheel drive", "rear wheel drive".
- name: historyInfo
in: query
required: false
schema:
type: string
description: Comma-separated list of vehicle history indicators. Possible values are freeHistoryReport, isOneOwner, noAccidents, personalUseOnly, cleanTitle.
- name: dealType
in: query
required: false
schema:
type: string
description: Comma-separated list of how good of a deal edmunds thinks this price is. Possible values are Great, Good, Fair.
- name: displayPrice
in: query
required: false
schema:
type: string
description: Display price. Range value or comma-separated list of positive integer numbers.
- name: loanPayment
in: query
required: false
schema:
type: string
description: Loan monthly payment. Range value or comma-separated list of positive integer numbers.
- name: leasePayment
in: query
required: false
schema:
type: string
description: Lease monthly payment. Range value or comma-separated list of Lease monthly payment. Range value or comma-separated list of values.
- name: paymentType
in: query
required: false
schema:
type: string
description: Payment type. Case insensitive. Possible values are loan or lease.
- name: vin
in: query
required: false
schema:
type: string
description: Comma-separated list of VINs. Case insensitive. Each VIN should contain 17 characters.
- name: stockNumber
in: query
required: false
schema:
type: string
description: Comma-separated list of Stock Number's. Case sensitive.
- name: bedLength
in: query
required: false
schema:
type: string
description: Comma-separated list of subranges of bed length in inches for pickup trucks.
- name: rearWheels
in: query
required: false
schema:
type: string
description: Comma-separated list of rear wheels for pickup trucks. Case sensitive. Possible values are "dual rear wheels".
- name: truckCabSize
in: query
required: false
schema:
type: string
description: Comma-separated list of truck cab styles. Possible values are "Crew Cab Pickup", "Extended Cab Pickup", "Regular Cab Pickup".
- name: displacement
in: query
required: false
schema:
type: string
description: Comma-separated list of subranges of engine size for pickup trucks.
- name: comfortConvenience
in: query
required: false
schema:
type: string
description: Comma-separated list of Comfort & Convenience vehicle features. Possible values are cgf_leather_seats,cgf_heated_seats,cgf_keyless_entry_start,cgf_adaptive_cruise_control,cgf_remote_start,cgf_navigation,cgf_2nd_row_bucket_seats,cgf_audio_and_cruise_controls_on_steering_wheel,gf_heated_steering_wheel,cgf_cooled_seats,cgf_power_driver_seat.
- name: safety
in: query
required: false
schema:
type: string
description: Comma-separated list of Safety vehicle features. Possible values are cgf_back_up_camera,cgf_blind_spot_monitoring,cgf_automatic_emergency_braking,cgf_lane_departure_warning,cgf_parking_sensors,cgf_360_degree_camera,cgf_alarm,cgf_tire_pressure_warning.
- name: engineExterior
in: query
required: false
schema:
type: string
description: Comma-separated list of Engine & Exterior vehicle features. Possible values are cgf_awd_4wd,cgf_sunroof_moonroof,cgf_towing_hitch,gf_heated_mirrors,cgf_hardtop,gf_integrated_turn_signal_mirrors,cgf_upgraded_headlights,cgf_upgraded_engine,gf_roof_rack,gf_upgraded_tires.
- name: entertainment
in: query
required: false
schema:
type: string
description: Comma-separated list of Entertainment vehicle features. Possible values are cgf_apple_carplay,cgf_bluetooth,cgf_premium_audio,cgf_aux_audio_inputs,cgf_android_auto,cgf_rear_entertainment_system,cgf_mobile_internet,cgf_usb_inputs.
- name: pagenum
in: query
required: true
schema:
type: integer
description: Page number for pagination. Always set this to 1 by default.
- name: pagesize
in: query
required: true
schema:
type: integer
description: Limits the number of items on the page. Always set this to 3 by default.
- name: sortby
in: query
required: false
schema:
type: string
description: |
The sorting strategy. Multiple values should be comma-separated. Case insensitive.<br>
Format: {field}:{direction} Default direction is ascending.
responses:
"200":
description: OK
content:
application/json:
schema:
$ref: '#/components/schemas/findInventoryResponse'
components:
schemas:
findInventoryResponse:
type: object
properties:
inventories:
type: object
totalNumber:
type: int
description: the total number of results found.
results:
type: array
items:
type: object
vin:
type: string
description: the vin of the vehicle.
sellersComments:
type: string
description: a truncated description of the vehicle from the seller.
inTransit:
type: boolean
description: whether this vehicle is currently being shipped to location.
dealerInfo:
type: object
name:
type: string
description: the name of the dealership.
computedDisplayInfo:
type: object
prices:
type: object
msrp:
type: double
description: the msrp of the vehicle.
price:
type: double
description: the actual display price of the vehicle.
dealerPrice:
type: double
description: the price that the dealer is asking for.
edmundsSuggestedPrice:
type: double
description: the price that edmunds.com believes you should pay. Always reference this as "Edmunds Suggested Price".
loanPaymentEstimate:
type: double
description: the monthly loan pay estimate.
getExpertReviewResponse:
type: object
properties:
vehicleReview:
type: object
properties:
summary:
type: string
overallRating:
type: number
format: double
pros:
type: array
items:
type: string
cons:
type: array
items:
type: string
scorecard:
type: object
properties:
overall:
type: number
format: double
driving:
type: number
format: double
utility:
type: number
format: double
technology:
type: number
format: double
comfort:
type: number
format: double
interior:
type: number
format: double
youTubeVideo:
type: object
allYouTubeVideos:
type: array
items:
description: An array of youtube videos about the car.
type: object
safety:
type: object
featuresSpecs:
description: Expert content features.
type: object
properties:
mostPopularStyleName:
type: string
manufacturersSuggestedRetailPrice:
type: string
milesPerGallonCityAndHighway:
type: string
seats:
type: integer
format: int32
transmission:
type: string
horsepower:
type: string
edmundsBackLink:
type: string
description: This is the link back to edmunds.com for this content. If only this link is returned, this means there is no review.
Discover other plugins from the shopping category

Klarna
Search and compare prices from thousands of online shops.
0 Comments

Pricerunner product recommendations
This plugin lets users find relevant products when asking for any kind of shopping suggestions
0 Comments

Shop
Search for millions of products from the world's greatest brands.
0 Comments

Bohita
Create apparel with any image you can describe! Get it delivered right to your door.
0 Comments

Lexi Shopper
Get product recommendations from your local Amazon store.
0 Comments

Wishbucket
Unified product search across all Korean platforms and brands.
0 Comments
Coupert
Search for the internet’s best coupons from thousands of online stores.
0 Comments

Kassalapp
Information about Norwegian grocery prices, nutritional and ingredient information
0 Comments

TechSpecs
Effortlessly compare devices & find answers for smartphones, tablets, smartwatches, laptops, monitors, TVs & more
0 Comments
TYM Plugin
Plugin for getting information about TYM products and attachments.
0 Comments

Coupons by Tenere
TenereTeam.com - Get the Best Deals & Coupons on Millions of Products At Over 50,000 Online Stores.
0 Comments

GoFynd
Elevate your shopping experience with GoFynd.
0 Comments

SimplyCodes
The smartest shopping tool. Save w/ coupons, deals, promo codes at 300K retailers, ecommerce stores.
0 Comments

Local by GoodCall
Discover and support restaurants, shops & services near you. 🍽️ 🛍️ 🔧
0 Comments

BuyWisely
Compare Prices & Discover the Latest Offers from thousands of online shops in Australia.
0 Comments

Easy Product Search
Easy Product Search simplifies shopping on Japanese EC sites using keywords. It providing product info.
0 Comments

Shopping AIssistant
Your AI-powered personal shopper scanning vast product catalogs across multiple merchants to find the best deals, in US.
0 Comments

HubCart POD Designer
Brainstorms print on-demand design ideas and creates designs.
0 Comments

Shop Best
Shopping intelligence, simplified. Your shortcut to shopping excellence on Amazon.
0 Comments

HaffPrice
Shop lowest price deals on millions of products. Electronics, shoes & clothing for less than Amazon!
0 Comments

Uniket
Elevate your shopping experience with Uniket.
0 Comments

Creatuity Stores
We integrate stores so you can search for products in all of them at the same time.
0 Comments

Tira
Shop Tira for top beauty brands! Explore cosmetics, health products & more online. Your beauty store awaits
0 Comments

PartSecure
Search & compare electronic component inventory, pricing, & lead time from top suppliers.
0 Comments

CoPilot
Searches every dealer, analyzes & ranks every car for you so you can buy with confidence.
0 Comments

HiCollectors Finder
Search and price comparison for eBay products. Only available in the United States.
0 Comments

Bubble Goods
Marketplace of 1000+ tasty & healthy foods. Discover new Vegan, Keto, Gluten-Free products & more.
0 Comments

ByByAI
Search for the best Amazon products ordered by rating.
0 Comments

Shopping tools
Shopping tools let you search for products to buy in AliExpress and eBay.
0 Comments

Klarna Shopping
Search and compare prices from thousands of online shops. Only available in the US.
0 Comments

Pricerunner product recommendations
This plugin lets users find relevant products when asking for any kind of shopping suggestions
0 Comments

Comparison
An advanced e-commerce tool, providing robust capabilities for efficient product search and accurate price comparison.
0 Comments

Ask Cars
Ask about car issues and get answers based on verified complaints to government agencies & public forums.
0 Comments

SHOP.COM
SHOP.COM Website Search for products, brands, stores and more. Great to find products, great deals, and earn rewards.
0 Comments

Lingo
Lingo - Direct Access to the Japanese Lifestyle with One Click.
0 Comments

PrimeLoupe
Simplify your decision-making process by summarizing Amazon product reviews for you.
0 Comments

AskChloe
Discover your style and get personalized recommendations on clothing, accessories, gifts, and more.
0 Comments

Isotonix
Isotonix products search.
0 Comments
Modeal
Exploring car recommendations, car information, and monthly payments through the Korean car sales service '모두가딜러'.
0 Comments

CarGurus
Find Your Perfect Car on CarGurus - Shop by Budget, Deal Rating, Make, Model, & More.
0 Comments

ShopMate AI
Searches for Products on Google Shopping in Real-Time, No Ads, Only Trusted Stores.
0 Comments

TrySpree
TrySpree is a website that finds free samples for you to try.
0 Comments
Ibotta Shopping
Your perfect shopping companion! Search for products from thousands of retailers.
0 Comments

Today's Top Deal
Find the best deals on Amazon today.
0 Comments

AMZPRO
Plugin for AMAZON product listing , help you write a product description .
0 Comments
Sleek Choice
Save time! Let's try effortlessly discover top-rated items within a specified budget range on Amazon.
0 Comments

Chaca Market Product
Get detailed information about products on Chaca Market
0 Comments

everysize Sneaker Search
Search for sneakers in your size and get the best price from 60+ shops (only in DE).
0 Comments

Mino
Discover the easiest way to find the best coupons for thousands of online stores.
0 Comments

Newegg PC Builder
Build and purchase a custom gaming PC based on your budget and needs.
0 Comments
Amazon Gift Chooser
Curated gifts for every occasion and special person.
0 Comments

Snappy Gifts
Personalized gift options for any budget or event, now or later, recipient's choice.
0 Comments

Shein Discovery
Get your fashion and lifestyle recommendations from Shein.
0 Comments

SSENSE
Enjoy personalized product recommendations from over 500 luxury and lifestyle brands.
0 Comments

Love Coupons
Find money saving coupon & discount codes for over 30,000 stores around the world.
0 Comments

Love Discounts UK
Search thousands of UK stores for money saving discount and voucher codes.
0 Comments

Deal Dazzle
Search and compare prices from numerous online stores. Find top coupons from various shops. (US only)
0 Comments

Datasheet.Chat
Gateway to interactive, and intelligent chat with any electrical components datasheet.
0 Comments
GIFT SENSAI
Find perfect gifts for friends, family, and colleagues on Amazon.com. Best for birthdays, Christmas & anniversaries.
0 Comments

Shop Rewards
Amazon product shopping search, conveniently query products, get discounts and discounted products more quickly.
0 Comments

Ebay Finds
Find any eBay product you need.
0 Comments