Skip to main content
GET
/
project
/
{id}
Get project details
curl --request GET \
  --url https://api.basic.tech/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

Project details retrieved successfully

Project details retrieved successfully

data
object