Meero Vehicle API

Vehicle API

Operations 5

POST /vehicle/submission Add or Update a Vehicle #
POST /vehicle/list List Vehicles #
GET /vehicle/status Get Vehicle #
DELETE /vehicle/delete Delete Vehicle #
GET /vehicle/shotlist List Vehicles to Shoot #

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/meero-vehicle-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

meero-vehicle-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  description: 'Global #1 visual AI editing and optimisation solution for the automotive industry'
  version: 2.60.65
  title: Car-Cutter Vehicle API
  termsOfService: https://www.car-cutter.com/terms
  contact:
    email: hello@car-cutter.com
  license:
    name: Proprietary
    url: https://www.car-cutter.com
servers:
- url: https://api.car-cutter.com
  description: Public API Server.
security:
- api_key: []
tags:
- name: Vehicle
  description: Vehicle API
  x-displayName: Vehicle API
paths:
  /vehicle/submission:
    post:
      summary: Add or Update a Vehicle
      description: If a vehicle with that id already exists, it is updated and its status is set to new.
      tags:
      - Vehicle
      consumes:
      - application/form-data
      produces:
      - application/json
      requestBody:
        content:
          multipart/form-data:
            schema:
              type: object
              required:
              - vehicle_id
              properties:
                vehicle_id:
                  type: string
                  description: Use the VIN if possible
                vehicle_manufacturer:
                  type: string
                  example: Audi
                vehicle_model:
                  type: string
                  example: A4 B8 2.0 TDI
                vehicle_model_ext:
                  type: string
                vehicle_color:
                  type: string
                  example: Moroblau Metallic
                vehicle_location:
                  type: string
                vehicle_lot:
                  type: string
                custom_reference:
                  type: string
                suggested_guideline_id:
                  type: string
                  description: guideline that will be suggested when shooting
                  example: guideline-2
      responses:
        '200':
          content:
            application/json:
              schema:
                type: object
                properties:
                  vehicle:
                    $ref: '#/components/schemas/Vehicle'
          description: Successful response
      operationId: postVehicleSubmission
      x-operation-id-source: derived
  /vehicle/list:
    post:
      consumes:
      - application/json
      produces:
      - application/json
      requestBody:
        content:
          application/json:
            schema:
              type: object
              required:
              - customer
              properties:
                customer:
                  type: string
                  description: The user id
                filters:
                  type: array
                  description: Only retrieve vehicles which have a match on all specified (column, values) pairs.
                  items:
                    type: object
                    properties:
                      column:
                        type: string
                      values:
                        type: array
                sort_by:
                  type: string
                  enum:
                  - last_update
                  description: Field to sort values on
                sort_direction:
                  type: string
                  enum:
                  - ASC
                  - DESC
                limit:
                  type: integer
                  minimum: 1
                  description: Return up to n results
                offset:
                  type: integer
                  minimum: 0
                  description: Skip the first n results
      responses:
        '200':
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/Vehicle'
          description: Successful response
      tags:
      - Vehicle
      summary: List Vehicles
      operationId: postVehicleList
      x-operation-id-source: derived
  /vehicle/status:
    get:
      summary: Get Vehicle
      description: The status can be new, active or deleted.
      parameters:
      - name: vehicle_id
        in: query
        required: true
        schema:
          type: string
      responses:
        '200':
          content:
            application/json:
              schema:
                type: object
                properties:
                  vehicle:
                    $ref: '#/components/schemas/Vehicle'
          description: Successful response
      tags:
      - Vehicle
      operationId: getVehicleStatus
      x-operation-id-source: derived
  /vehicle/delete:
    delete:
      summary: Delete Vehicle
      description: Sets the status of a vehicle to DELETED.
      parameters:
      - name: vehicle_id
        in: query
        required: true
        schema:
          type: string
      responses:
        '200':
          content:
            application/json:
              schema:
                type: object
                properties:
                  vehicle:
                    $ref: '#/components/schemas/Vehicle'
          description: Successful response
      tags:
      - Vehicle
      operationId: deleteVehicleDelete
      x-operation-id-source: derived
  /vehicle/shotlist:
    get:
      tags:
      - Vehicle
      responses:
        '200':
          content:
            application/json:
              schema:
                type: object
                properties:
                  vehicles:
                    type: array
                    items:
                      $ref: '#/components/schemas/Vehicle'
          description: Successful response
      summary: List Vehicles to Shoot
      description: Return all vehicles with status new
      operationId: getVehicleShotlist
      x-operation-id-source: derived
components:
  schemas:
    Vehicle:
      type: object
      properties:
        vehicle_id:
          type: string
        app_status:
          type: string
          example: new
        app_status_updated:
          type: string
          example: 2024/03/01, 09:59:55
        vehicle_manufacturer:
          type: string
          example: Audi
        vehicle_model:
          type: string
          example: A4 B8 2.0 TDI
        vehicle_model_ext:
          type: string
        vehicle_color:
          type: string
          example: Moroblau Metallic
        vehicle_location:
          type: string
        vehicle_lot:
          type: string
        custom_reference:
          type: string
        suggested_guideline_id:
          type: string
          example: guideline-2
  securitySchemes:
    api_key:
      type: http
      scheme: bearer
externalDocs:
  description: Find out more about Car-Cutter
  url: https://www.car-cutter.com
x-navigateMethodsByName: true
x-sortMethodsBy:
- path
- operation