carsxe-api
Version:
CarsXE is a powerful, easy-to-use API that gives you instant access to a wide range of vehicle data, including specs, market value, license plate decoding, and more. Our API is designed to be fast, flexible, and scalable, so you can quickly and easily int
24 lines (23 loc) • 597 B
TypeScript
export type PlateDecoderParams = {
plate: string;
state: string;
country?: string;
};
export type VinInput = {
vin: string;
};
export type ImageInput = {
make: string;
model: string;
year?: string;
trim?: string;
color?: string;
transparent?: boolean;
angle?: 'front' | 'side' | 'back';
photoType?: 'interior' | 'exterior' | 'engine';
size?: 'Small' | 'Medium' | 'Large' | 'Wallpaper' | 'All';
license?: 'Public' | 'Share' | 'ShareCommercially' | 'Modify' | 'ModifyCommercially';
};
export type ObdcodesdecoderInput = {
code: string;
};