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

# Get Image

> GET request to return an image



## OpenAPI

````yaml https://api.connectedfleet.michelin.com/vehicle-checks/api-docs get /api/v1/vehicle-checks/images/{imageId}
openapi: 3.0.3
info:
  title: Masternaut Vehicle Checks Public API
  contact:
    name: Masternaut
    url: https://www.masternaut.com
    email: support@masternautconnect.com
  version: 1.0.0
servers:
  - url: https://api.connectedfleet.michelin.com/vehicle-checks
security: []
tags:
  - name: /vehicle-checks
    description: Vehicle check and inspection operations
paths:
  /api/v1/vehicle-checks/images/{imageId}:
    get:
      tags:
        - /vehicle-checks
      summary: Get Image
      description: GET request to return an image
      operationId: getImage
      parameters:
        - name: imageId
          in: path
          required: true
          schema:
            type: string
          description: Id of image in string format.
      responses:
        '200':
          description: Raw binary image data in Byte format.
          content:
            image/*:
              schema:
                type: string
                format: byte
      security:
        - bearerAuth: []
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT

````