action autodealerdata_get_vehicle_seen_vehicle_seen_get { label: "Checks if a VIN appeared on the market on or after a given date." description: "Checks our database to see if we have data on a VIN that appeared on the open market on or after the given date with a True/False response. \nThis endpoint is more cost effective than the /vehicleHistory endpoint if your use case\nrequires searching a large list of vehicles with a low individual likelyhood of appearing on the open market. (For example searching for a specific stolen vehicle)." provider: autodealerdata method: GET path: "/vehicleSeen" encoding: json input: { type: "object" properties: { afterDate: { type: "string" format: "date" } jwt: { type: "string" } vin: { type: "string" } } required: ["afterDate", "jwt", "vin"] additionalProperties: false } output: { type: "object" required: ["data"] properties: { brandName: { type: "string" } cacheTimeLimit: { type: "integer" } condition: { type: "string" } data: { type: "boolean" } modelName: { type: "string" } msg: { type: "string" } regionName: { type: "string" } } } }