Help us improve
Share bugs, ideas, or general feedback.
npx claudepluginhub carsxe/carsxe-claude-plugin --plugin carsxeHow this command is triggered — by the user, by Claude, or both
Slash command
/carsxe:imagesThe summary Claude sees in its command listing — used to decide when to auto-load this command
# 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...
/gemini-imageGenerates images from text descriptions using Google Gemini AI. Interactively selects model (e.g., gemini-3.1-flash-image-preview) and aspect ratio (e.g., 1:1). Requires GEMINI_API_KEY and Python 3.
/ai-image-generatorGenerates AI images using Gemini or GPT APIs from a description, with optional purpose like hero, icon, og, or illustration.
/imagesFetches image frames, composites, z-stacks, crops, or channel data from NimbusImage datasets as numpy arrays using nimbusimage Python API.
Share bugs, ideas, or general feedback.
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).