> ## 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 details of a project

> get all details of all project that user owns



## OpenAPI

````yaml /spec/paas.yaml get /v1/projects/{name}
openapi: 3.0.1
info:
  title: PaaS
  description: >-
    Manage your apps using our API


    [wss://api.iran.liara.ir?token=<api-token>&cmd=/bin/bash&project_id=<project-id>](

    wss://api.iran.liara.ir?token=<api-token>&cmd=/bin/bash&project_id=<project-id>)


    Parameters:

    - `token`: Your api token in liara

    - `cmd`: By default /bin/bash

    - `project_id`: The id of your project in liara

    - `teamID`: To access services in a team


    This `WebSocket` endpoint allows `real-time`

    communication with the projects service hosted

    at `Liara` You can use `WebSocket protocols`

    to send and receive data, enabling efficient and

    low-latency interactions with the projects
  termsOfService: '#'
  contact:
    email: info@liara.ir
  version: 1.0.0
servers:
  - url: https://api.iran.liara.ir
security:
  - jwt: []
tags:
  - name: Apps
    description: Everything about your Apps
  - name: Deploy
    description: Deploy endpoints
  - name: Settings
    description: Settings of your app
  - name: Disks
    description: Disks of your app
  - name: Domains
    description: Domains of your app
  - name: Reports
    description: Reports of your app
externalDocs:
  description: Find out more about PaaS
  url: http://liara.ir
paths:
  /v1/projects/{name}:
    get:
      tags:
        - Apps
      summary: Get details of a project
      description: get all details of all project that user owns
      operationId: getAppByName
      parameters:
        - name: name
          in: path
          description: The name of your app
          required: true
          schema:
            type: string
      responses:
        '200':
          description: Successful operation
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ProjectAllDetails'
        '401':
          description: Missing authentication
          content: {}
        '404':
          description: App does not exists.
          content: {}
components:
  schemas:
    ProjectAllDetails:
      type: object
      properties:
        project:
          type: object
          properties:
            _id:
              type: string
              description: The id of project
            project_id:
              type: string
              description: The name of project
            type:
              type: string
              description: The platform of project
            status:
              type: string
              description: The status of project
            defaultSubdomain:
              type: boolean
              description: The defaultSubdomain status of project
            readOnlyRootFilesystem:
              type: boolean
              description: The readOnlyRootFilesystem of project
            zeroDowntime:
              type: boolean
              description: The zeroDowntime status of project
            scale:
              type: number
              description: The being on of project
            envs:
              type: array
              description: The envs of project
              items:
                type: object
                properties:
                  key:
                    type: string
                  value:
                    type: string
                  encrypted:
                    type: boolean
                  _id:
                    type: string
            planID:
              type: string
              description: The plan of project
            fixedIPStatus:
              type: string
              description: The fixedIPStatus of project
            created_at:
              type: string
              description: The time to create of project
            node:
              type: object
              properties:
                _id:
                  type: string
                IP:
                  type: string
              description: The node of project
            hourlyPrice:
              type: number
              description: The hourlyPrice of project
            isDeployed:
              type: boolean
              description: The deployment status of project
            reservedDiskSpace:
              type: number
              description: The count reservedDiskSpace of project
  securitySchemes:
    jwt:
      type: apiKey
      description: 'Enter the token with the `Bearer: ` prefix, e.g. "Bearer abcde12345".  #'
      name: Authorization
      in: header

````