> ## Documentation Index
> Fetch the complete documentation index at: https://docs.yasmina.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# List vehicle makers

> Returns vehicle makers that have at least one model. Use the returned code when requesting a quote with a customs number.



## OpenAPI

````yaml /car-api-reference/openapi.json get /vehicle-makers
openapi: 3.0.1
info:
  title: OpenAPI For Motor Insurance
  description: API's that you need to use to issue insurance policies to your clients
  license:
    name: MIT
  version: 1.0.0
servers:
  - x-fern-server-name: Sandbox
    url: https://sandbox.yasmina.ai/api/v1/car-comp
  - x-fern-server-name: Production
    url: https://production.yasmina.ai/api/v1/car-comp
security:
  - Oauth2: []
paths:
  /vehicle-makers:
    get:
      tags:
        - Vehicle lookups
      summary: List vehicle makers
      description: >-
        Returns vehicle makers that have at least one model. Use the returned
        code when requesting a quote with a customs number.
      parameters:
        - $ref: '#/components/parameters/VehicleLookupSearch'
      responses:
        '200':
          description: Vehicle makers matching the optional search term
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/VehicleLookupItem'
        '401':
          $ref: '#/components/responses/Unauthorized'
        '422':
          $ref: '#/components/responses/UnprocessableEntity'
components:
  parameters:
    VehicleLookupSearch:
      name: q
      in: query
      required: false
      description: >-
        Case-insensitive English or Arabic name search. An exact numeric code is
        also accepted.
      schema:
        type: string
        maxLength: 100
        example: Toyota
  schemas:
    VehicleLookupItem:
      type: object
      required:
        - code
        - name_en
        - name_ar
      properties:
        code:
          type: integer
          description: Provider-compatible vehicle lookup code.
          example: 101
        name_en:
          type: string
          nullable: true
          description: English display name.
          example: Toyota
        name_ar:
          type: string
          nullable: true
          description: Arabic display name.
          example: تويوتا
    Error:
      type: object
      properties:
        code:
          type: string
        message:
          type: string
  responses:
    Unauthorized:
      description: Unauthorized
      content:
        application/json:
          schema:
            type: object
            properties:
              code:
                type: string
                example: '40101'
              message:
                type: string
                example: Unauthenticated
    UnprocessableEntity:
      description: Unprocessable Entity
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
  securitySchemes:
    Oauth2:
      description: JWT Authorization header using the Bearer scheme
      type: oauth2
      flows:
        clientCredentials:
          tokenUrl: /oauth/token
          scopes: {}

````