npx claudepluginhub carsxe/carsxe-claude-plugin --plugin carsxe# CarsXE — Vehicle Images Retrieve images for a vehicle using the CarsXE Images API. ## Steps 1. Parse $ARGUMENTS to extract: - `make` (required): vehicle manufacturer (e.g., BMW, Ford, Toyota) - `model` (required): vehicle model (e.g., X5, Mustang, Camry) - `year` (optional): 4-digit year (e.g., 2019) - `trim` (optional): specific trim level (e.g., Sport, Limited) - `color` (optional): vehicle color (e.g., red, black) - `transparent` (optional): `true` to return transparent background images - `angle` (optional): `front`, `side`, or `back` - `photoType` (optional...
/imagesFetches image frames, composites, z-stacks, crops, or channel data from NimbusImage datasets as numpy arrays using nimbusimage Python API.
Retrieve images for a vehicle using the CarsXE Images API.
Parse $ARGUMENTS to extract:
make (required): vehicle manufacturer (e.g., BMW, Ford, Toyota)model (required): vehicle model (e.g., X5, Mustang, Camry)year (optional): 4-digit year (e.g., 2019)trim (optional): specific trim level (e.g., Sport, Limited)color (optional): vehicle color (e.g., red, black)transparent (optional): true to return transparent background imagesangle (optional): front, side, or backphotoType (optional): interior, exterior, or enginesize (optional): Small, Medium, Large, Wallpaper, or Alllicense (optional): Public, Share, ShareCommercially, Modify, or ModifyCommerciallyExample: /carsxe:images BMW X5 2019
If make or model are missing, ask the user to provide them.
Make an HTTP GET request:
GET https://api.carsxe.com/images?key=<CARSXE_API_KEY>&make=<MAKE>&model=<MODEL>&source=claude_plugin[&year=<YEAR>][&trim=<TRIM>][&color=<COLOR>][&transparent=<TRANSPARENT>][&angle=<ANGLE>][&photoType=<PHOTOTYPE>][&size=<SIZE>][&license=<LICENSE>]
Replace <CARSXE_API_KEY> with the value of the environment variable CARSXE_API_KEY. Only include optional parameters if the user specified them.
Present the results:
Handle errors gracefully (no images found, invalid params, auth error).