GET
/
v1
/
projects
/
{id}
Retrieve a specific project by ID
curl --request GET \
  --url https://carbon-engine.onrender.com/v1/projects/{id} \
  --header 'Authorization: Bearer <token>'
{
  "name": "<string>",
  "description": "<string>",
  "portfolio": {
    "name": "<string>",
    "description": "<string>"
  },
  "projectCategory": {
    "name": "<string>",
    "description": "<string>"
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

id
string
required

The project ID

Response

Details of the project

name
string
required

The name of the project

description
string

The description of the project

portfolio
object
projectCategory
object