GET
/
project
/
{id}
curl --request GET \
  --url http://localhost:3003/project/{id} \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "id": "<string>",
    "name": "<string>",
    "slug": "<string>",
    "website": "<string>",
    "profile": {},
    "created_at": "2023-11-07T05:31:56Z"
  }
}

Authorizations

Authorization
string
header
required

JWT Authorization Token header using the Bearer scheme

Path Parameters

id
string
required

Unique identifier of the project

Response

200
application/json

Project details retrieved successfully

data
object