---
title: "Detailed information for a specific project."
url: "https://developer.argaam.com/apis/projects-capital-investments-layer-api-sandbox-v1/versions/e21211e4-e4a7-4273-a6ff-f45e533a0e17/operations/getProjectsByProjectId"
---

> Full API specification: https://developer.argaam.com/apis/projects-capital-investments-layer-api-sandbox-v1/versions/e21211e4-e4a7-4273-a6ff-f45e533a0e17.md

# Detailed information for a specific project.

`GET` `/api/v1.1/projects/{projectId}`

Operation ID: `getProjectsByProjectId`

Returns the complete project record: scope, parties involved, budget breakdown, timeline, and milestones. ### Example ``` GET /api/v1.1/projects/45678 ```

## Path parameters

- `projectId` (integer, int32, required) - Project ID.

## Responses

- `200` - Success

## OpenAPI definition

````yaml
openapi: 3.0.1
info:
  title: Projects & Capital Investments Layer API
  version: v1.1
servers:
  - url: https://api-sandbox.argaam.com
    description: Argaam API Gateway (Sandbox)
paths:
  /api/v1.1/projects/{projectId}:
    get:
      tags:
        - Projects
      parameters:
        - name: projectId
          in: path
          required: true
          schema:
            type: integer
            format: int32
          description: Project ID.
      responses:
        "200":
          description: Success
      summary: Detailed information for a specific project.
      description: "Returns the complete project record: scope, parties involved,\r

        budget breakdown, timeline, and milestones.\r

        \            \r

        ### Example\r

        ```\r

        GET /api/v1.1/projects/45678\r

        ```"
      operationId: getProjectsByProjectId
security:
  - ApiKeyAuth: []
components:
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: apikey
````
