openapi: 3.1.0 info: title: CarsXE Vehicle Data Auth Recalls API description: CarsXE is a vehicle data API platform offering VIN decoding, vehicle specifications, market value, license plate decoding, vehicle recalls and related lookups. All endpoints accept an API key as a query string parameter `key`. version: '1' contact: name: CarsXE url: https://api.carsxe.com servers: - url: https://api.carsxe.com description: Production security: - ApiKeyQuery: [] tags: - name: Recalls paths: /v1/recalls: get: tags: - Recalls summary: Retrieve recall information by VIN operationId: getRecalls parameters: - $ref: '#/components/parameters/ApiKey' - in: query name: vin required: true schema: type: string minLength: 17 maxLength: 17 responses: '200': description: Recall data content: application/json: schema: type: object components: parameters: ApiKey: in: query name: key required: true schema: type: string description: Your CarsXE API key securitySchemes: ApiKeyQuery: type: apiKey in: query name: key description: CarsXE API key from https://api.carsxe.com/dashboard