
CoPilot
Description
Searches every dealer, analyzes & ranks every car for you so you can buy with confidence.
Details
https://gpt.copilotsearch.com/.well-known/ai-plugin.json
{
"schema_version": "v1",
"name_for_human": "CoPilot",
"name_for_model": "copilot",
"description_for_human": "Searches every dealer, analyzes & ranks every car for you so you can buy with confidence.",
"description_for_model": "Provides real-time data about vehicles for sale and detailed information about vehicle models.",
"auth": {
"type": "none"
},
"api": {
"type": "openapi",
"url": "https://gpt.copilotsearch.com/openapi.json",
"is_user_authenticated": false
},
"logo_url": "https://gpt.copilotsearch.com/logo.png",
"contact_email": "support@copilotsearch.com",
"legal_info_url": "https://copilotsearch.com/legal"
}
https://gpt.copilotsearch.com/openapi.json
{
"openapi": "3.1.0",
"info": {
"title": "CoPilot GPT API",
"description": "Get current and historical information about vehicle models and vehicles for sale.",
"version": "7d75d50"
},
"paths": {
"/logo.png": {
"get": {
"summary": "Get Logo",
"operationId": "get_logo_logo_png_get",
"responses": {
"200": {
"description": "Successful Response",
"content": {
"image/png": {}
}
}
}
}
},
"/year_make_model": {
"get": {
"summary": "Get Year Make Model",
"description": "Get basic data about a year / make / model combination.\nReturns:\n available engines,\n available transmissions,\n available body styles,\n available fuel types,\n fuel economy (mpg city and highway)",
"operationId": "get_year_make_model_year_make_model_get",
"parameters": [
{
"required": true,
"schema": {
"type": "integer",
"title": "Year"
},
"name": "year",
"in": "query"
},
{
"required": true,
"schema": {
"type": "string",
"title": "Make"
},
"name": "make",
"in": "query"
},
{
"required": true,
"schema": {
"type": "string",
"title": "Model"
},
"name": "model",
"in": "query"
}
],
"responses": {
"200": {
"description": "Successful Response",
"content": {
"application/json": {
"schema": {}
}
}
},
"422": {
"description": "Validation Error",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/HTTPValidationError"
}
}
}
}
}
}
},
"/models_by_make_and_year": {
"get": {
"summary": "Get Models By Make And Year",
"description": "Get models that are available for a given year and make.",
"operationId": "get_models_by_make_and_year_models_by_make_and_year_get",
"parameters": [
{
"required": true,
"schema": {
"type": "integer",
"title": "Year"
},
"name": "year",
"in": "query"
},
{
"required": true,
"schema": {
"type": "string",
"title": "Make"
},
"name": "make",
"in": "query"
}
],
"responses": {
"200": {
"description": "Successful Response",
"content": {
"application/json": {
"schema": {
"type": "object",
"title": "Response Get Models By Make And Year Models By Make And Year Get"
}
}
}
},
"422": {
"description": "Validation Error",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/HTTPValidationError"
}
}
}
}
}
}
},
"/vehicles_for_sale": {
"get": {
"summary": "Get Vehicles For Sale",
"operationId": "get_vehicles_for_sale_vehicles_for_sale_get",
"parameters": [
{
"required": true,
"schema": {
"type": "string",
"title": "City"
},
"name": "city",
"in": "query"
},
{
"required": true,
"schema": {
"type": "string",
"title": "State"
},
"name": "state",
"in": "query"
},
{
"required": false,
"schema": {
"type": "integer",
"title": "Year"
},
"name": "year",
"in": "query"
},
{
"required": false,
"schema": {
"type": "string",
"title": "Make",
"default": ""
},
"name": "make",
"in": "query"
},
{
"required": false,
"schema": {
"type": "string",
"title": "Model",
"default": ""
},
"name": "model",
"in": "query"
},
{
"required": false,
"schema": {
"type": "string",
"title": "Host"
},
"name": "host",
"in": "header"
}
],
"responses": {
"200": {
"description": "Successful Response",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/VehiclesForSaleResponse"
}
}
}
},
"422": {
"description": "Validation Error",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/HTTPValidationError"
}
}
}
}
}
}
},
"/vehicles_for_sale_by_coordinates": {
"get": {
"summary": "Get Vehicles For Sale By Coordinates",
"description": "Get a curated list of the top-ranked vehicles for sale near a location,\nand the url of a page on CoPilot which shows more ranked vehicles for sale.\n\n- For a given year, make, model, latitude, and longitude\n- For a given make, model, latitude, and longitude\n- For a given latitude, and longitude",
"operationId": "get_vehicles_for_sale_by_coordinates_vehicles_for_sale_by_coordinates_get",
"parameters": [
{
"required": true,
"schema": {
"type": "number",
"title": "Latitude"
},
"name": "latitude",
"in": "query"
},
{
"required": true,
"schema": {
"type": "number",
"title": "Longitude"
},
"name": "longitude",
"in": "query"
},
{
"required": false,
"schema": {
"type": "integer",
"title": "Year"
},
"name": "year",
"in": "query"
},
{
"required": false,
"schema": {
"type": "string",
"title": "Make",
"default": ""
},
"name": "make",
"in": "query"
},
{
"required": false,
"schema": {
"type": "string",
"title": "Model",
"default": ""
},
"name": "model",
"in": "query"
},
{
"required": false,
"schema": {
"type": "string",
"title": "Host"
},
"name": "host",
"in": "header"
}
],
"responses": {
"200": {
"description": "Successful Response",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/VehiclesForSaleResponse"
}
}
}
},
"422": {
"description": "Validation Error",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/HTTPValidationError"
}
}
}
}
}
}
}
},
"components": {
"schemas": {
"HTTPValidationError": {
"properties": {
"detail": {
"items": {
"$ref": "#/components/schemas/ValidationError"
},
"type": "array",
"title": "Detail"
}
},
"type": "object",
"title": "HTTPValidationError"
},
"NamedCount": {
"properties": {
"name": {
"type": "string",
"title": "Name"
},
"count": {
"type": "integer",
"title": "Count"
}
},
"type": "object",
"required": [
"name",
"count"
],
"title": "NamedCount"
},
"PublicSRP": {
"properties": {
"description": {
"type": "string",
"title": "Description"
},
"url": {
"type": "string",
"title": "Url"
},
"area_counts": {
"items": {
"$ref": "#/components/schemas/NamedCount"
},
"type": "array",
"title": "Area Counts"
},
"search_counts": {
"items": {
"$ref": "#/components/schemas/NamedCount"
},
"type": "array",
"title": "Search Counts"
},
"top_ranked_vehicles": {
"items": {
"$ref": "#/components/schemas/Url"
},
"type": "array",
"title": "Top Ranked Vehicles"
}
},
"type": "object",
"required": [
"description",
"url",
"area_counts",
"search_counts",
"top_ranked_vehicles"
],
"title": "PublicSRP"
},
"Url": {
"properties": {
"title": {
"type": "string",
"title": "Title"
},
"url": {
"type": "string",
"title": "Url"
}
},
"type": "object",
"required": [
"title",
"url"
],
"title": "Url"
},
"ValidationError": {
"properties": {
"loc": {
"items": {
"anyOf": [
{
"type": "string"
},
{
"type": "integer"
}
]
},
"type": "array",
"title": "Location"
},
"msg": {
"type": "string",
"title": "Message"
},
"type": {
"type": "string",
"title": "Error Type"
}
},
"type": "object",
"required": [
"loc",
"msg",
"type"
],
"title": "ValidationError"
},
"VehiclesForSaleResponse": {
"properties": {
"description": {
"type": "string",
"title": "Description"
},
"results": {
"items": {
"$ref": "#/components/schemas/PublicSRP"
},
"type": "array",
"title": "Results"
}
},
"type": "object",
"required": [
"description",
"results"
],
"title": "VehiclesForSaleResponse"
}
}
}
}
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

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

Edmunds
Given a make, model and year, this will lookup the edmunds official review.
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