UNPKG

carsxe-api

Version:

CarsXE is a powerful, easy-to-use API that gives you instant access to vehicle data like specs, market value, license plate decoding, and more. It's fast, scalable, and simple to integrate into your apps and services.

22 lines (21 loc) 1.05 kB
import { VinInput, MarketValueInput, SpecsInput, PlateDecoderParams, ImageInput, ObdcodesdecoderInput, YearMakeModelInput, PlateImageRecognitionInput, VinOcrInput } from './types'; export declare const Greeter: (name: string) => string; export declare class CarsXE { private apiKey; constructor(apiKey: string); private getBaseUrl; private buildUrl; specs(params: SpecsInput): Promise<any>; marketvalue(params: MarketValueInput): Promise<any>; history(params: VinInput): Promise<any>; recalls(params: VinInput): Promise<any>; internationalVinDecoder(params: VinInput): Promise<any>; platedecoder(params: PlateDecoderParams): Promise<any>; lienAndTheft(params: VinInput): Promise<any>; plateImageRecognition(params: PlateImageRecognitionInput): Promise<any>; vinOcr(params: VinOcrInput): Promise<any>; yearMakeModel(params: YearMakeModelInput): Promise<any>; images(params: ImageInput): Promise<any>; obdcodesdecoder(params: ObdcodesdecoderInput): Promise<any>; } export default CarsXE;