# Year Make Model

> Look up vehicle data by Year, Make, and Model using the CarsXE YMM API. Use this when a user doesn't have a VIN but knows the year, make, and model of a vehicle and wants specs, trims, or features.

- Skill: `hashgraph-online/year-make-model` (Agent Skill)
- Install (CLI): `npx skillmds@latest add hashgraph-online/year-make-model`
- Raw SKILL.md: https://api.skillmd.com/api/skills/hashgraph-online/year-make-model/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: AI & ML
- Author: hashgraph-online (https://skillmd.com/u/hashgraph-online)
- Updated: 2026-09-08
- Page: https://skillmd.com/skills/hashgraph-online/year-make-model

---



When the user asks about a vehicle by year, make, and model (without a VIN):

1. Make an HTTP GET request to the CarsXE YMM API:
   ```
   GET https://api.carsxe.com/v1/ymm?key={CARSXE_API_KEY}&year={YEAR}&make={MAKE}&model={MODEL}&source=codex_plugin[&trim={TRIM}]
   ```
   Only include `trim` if the user specified one.
2. Present available trims, engine options, features, and specs.
3. If the user didn't specify a trim, list all available trims for that year/make/model.
4. If the API key is missing, tell the user to set the `CARSXE_API_KEY` environment variable (see AGENTS.md).

---

**Source:** [`hashgraph-online/awesome-codex-plugins`](https://github.com/hashgraph-online/awesome-codex-plugins) → `plugins/carsxe/carsxe-codex-plugin/skills/year-make-model/SKILL.md`

