Automile ClientOrder API

The ClientOrder API from Automile — 2 operation(s) for clientorder.

Operations 2

POST /v1/client/order/pro Creates a pro order #
GET /v1/client/order/propricing Get Pro PriceModel #

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/automile-clientorder-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 email required.

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

OpenAPI Specification

automile-clientorder-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Automile ClientApi Client Order API
  version: v1
servers:
- url: https://api.automile.com/
tags:
- name: ClientOrder
paths:
  /v1/client/order/pro:
    post:
      tags:
      - ClientOrder
      summary: Creates a pro order
      operationId: CreateClientOrder
      responses:
        '200':
          description: A pro order is created
        '500':
          description: Internal server error
      security:
      - oauth2: []
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/ProOrderModel'
          text/json:
            schema:
              $ref: '#/components/schemas/ProOrderModel'
          application/*+json:
            schema:
              $ref: '#/components/schemas/ProOrderModel'
        description: The pro order model
  /v1/client/order/propricing:
    get:
      tags:
      - ClientOrder
      summary: Get Pro PriceModel
      operationId: GetProPricingClientCustom
      parameters:
      - in: query
        name: countryCode
        schema:
          type: string
      - in: query
        name: numberOfUnits
        schema:
          type: integer
          format: int32
      responses:
        '200':
          description: The pro price details returned
          content:
            text/plain:
              schema:
                $ref: '#/components/schemas/ApiPriceModel'
            application/json:
              schema:
                $ref: '#/components/schemas/ApiPriceModel'
            text/json:
              schema:
                $ref: '#/components/schemas/ApiPriceModel'
        '500':
          description: Internal server error
      security:
      - oauth2: []
components:
  schemas:
    ProOrderModel:
      required:
      - CompanyName
      - Email
      - FirstName
      - LastName
      - MobilePhoneNumber
      type: object
      properties:
        ISO4217CurrencyCode:
          type: string
        NumberOfUnits:
          format: int32
          type: integer
        NonOBDUnits:
          type: boolean
        ExtensionCables:
          type: boolean
        NumberOfExtensionCords:
          format: int32
          type: integer
        CompanyName:
          minLength: 1
          type: string
        FirstName:
          minLength: 1
          type: string
        LastName:
          minLength: 1
          type: string
        Email:
          minLength: 1
          type: string
        MobilePhoneNumber:
          minLength: 1
          type: string
        ShippingAddress:
          $ref: '#/components/schemas/AddressModel'
        UseShippingAddressForBillingAddress:
          type: boolean
        BillingAddress:
          $ref: '#/components/schemas/AddressModel'
      additionalProperties: false
    ApiPriceModel:
      type: object
      properties:
        ISO4217CurrencyCode:
          type: string
        IsYearlySubscription:
          type: boolean
        SubscriptionFeePerDeviceAndMonth:
          format: double
          type: number
        SubscriptionFeePerDeviceAndYear:
          format: double
          type: number
        NumberOfUnits:
          format: double
          type: number
        UnitFee:
          format: double
          type: number
        UnitTotalFee:
          format: double
          type: number
        SubscriptionFee:
          format: double
          type: number
        SubscriptionTotalFee:
          format: double
          type: number
        ShipmentFee:
          format: double
          type: number
        TotalFee:
          format: double
          type: number
        SubscriptionTotalFeeDescription:
          type: string
        UnitTotalFeeDescription:
          type: string
        ShipmentFeeDescription:
          type: string
        SubscriptionFeePerDeviceAndMonthDescription:
          type: string
        SubscriptionFeePerDeviceAndYearDescription:
          type: string
        FreightForwarderUrl:
          type: string
        FreightForwarderDescription:
          type: string
        ArticlePriceIdMonthlyPlan:
          format: int32
          type: integer
        ArticlePriceIdYearlyPlan:
          format: int32
          type: integer
      additionalProperties: false
    AddressModel:
      required:
      - AddressLine2
      - City
      - ISO3166CountryCode
      - ZipCode
      type: object
      properties:
        AddressId:
          format: int32
          type: integer
        CompanyName:
          type: string
        ContactNameAtAddress:
          type: string
        AddressLine2:
          minLength: 1
          type: string
        AddressLine3:
          type: string
        AddressLine4:
          type: string
        ZipCode:
          minLength: 1
          type: string
        City:
          minLength: 1
          type: string
        StateOrProvince:
          type: string
        ISO3166CountryCode:
          minLength: 1
          type: string
      additionalProperties: false
  securitySchemes:
    oauth2:
      type: oauth2
      flows:
        implicit:
          scopes:
            read: Read access to protected resources
            write: Write access to protected resources
          authorizationUrl: https://api.automile.com/login/
      description: OAuth2 Implicit Grant