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

# Get vm details

> get a vm that user owns



## OpenAPI

````yaml /spec/Iaas.yaml get /vm/{id}
openapi: 3.0.1
info:
  title: Liara Iaas API Documentaion
  description: |-
    Manage your vms and its resources

    Parameters:
    - `teamID`: To access services in a team
  termsOfService: '#'
  contact:
    email: info@liara.ir
  version: 1.0.0
servers:
  - url: https://iaas-api.liara.ir
security:
  - jwt: []
tags:
  - name: VMs
    description: Manage your VMs
externalDocs:
  description: Find out more about Iaas
  url: http://liara.ir
paths:
  /vm/{id}:
    get:
      tags:
        - VMs
      summary: Get vm details
      description: get a vm that user owns
      operationId: getVMDetails
      parameters:
        - name: id
          in: path
          required: true
          schema:
            type: string
      responses:
        '200':
          description: Successful operation
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GetVMDetailsResponse'
        '401':
          description: Missing authentication
          content: {}
components:
  schemas:
    GetVMDetailsResponse:
      type: object
      properties:
        _id:
          type: string
        plan:
          type: string
        OS:
          type: string
        state:
          type: string
          enum:
            - CREATED
            - RUNNING
            - STOPPED
            - DELETED
        config:
          type: object
          properties:
            SSHKeys:
              type: array
              items:
                type: string
            rootPassword:
              type: string
            hostname:
              type: string
        name:
          type: string
        createdAt:
          type: string
        guestState:
          type: string
        power:
          type: string
          enum:
            - POWERED_ON
            - POWERED_OFF
        IPs:
          type: array
          items:
            type: object
            properties:
              address:
                type: string
              version:
                type: string
        planDetails:
          type: object
          properties:
            available:
              type: boolean
            region:
              type: string
            monthlyPrice:
              type: number
            hourlyPrice:
              type: number
            volume:
              type: number
            RAM:
              type: object
              properties:
                amount:
                  type: number
            CPU:
              type: object
              properties:
                amount:
                  type: number
            IPv4MonthlyPrice:
              type: array
              items:
                type: number
            IPv4HourlyPrice:
              type: array
              items:
                type: number
  securitySchemes:
    jwt:
      type: http
      scheme: bearer
      bearerFormat: JWT

````