Database APIs (server side)
projects
projects-users
schema
project API keys
projects
Get all admin projects of developer
Retrieves all projects owned by the authenticated user
GET
/
project
curl --request GET \
--url https://api.basic.tech/project/ \
--header 'Authorization: Bearer <token>'
{
"data": [
{
"id": "<string>",
"name": "<string>",
"slug": "<string>",
"profile": {
"icon_url": "<string>"
},
"team_id": "<string>",
"team_name": "<string>",
"team_slug": "<string>",
"created_at": "2023-11-07T05:31:56Z"
}
]
}
Authorizations
JWT Authorization Token header using the Bearer scheme
Response
200
application/json
List of user projects
curl --request GET \
--url https://api.basic.tech/project/ \
--header 'Authorization: Bearer <token>'
{
"data": [
{
"id": "<string>",
"name": "<string>",
"slug": "<string>",
"profile": {
"icon_url": "<string>"
},
"team_id": "<string>",
"team_name": "<string>",
"team_slug": "<string>",
"created_at": "2023-11-07T05:31:56Z"
}
]
}
Assistant
Responses are generated using AI and may contain mistakes.