Skip to main content
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>"
  }
}

Documentation Index

Fetch the complete documentation index at: https://c-mass.mintlify.app/llms.txt

Use this file to discover all available pages before exploring further.

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