API Documentation
Webhooks
Project Management
AI Scoring Templates
Application Evaluation
Project Management
List Projects
GET
/
v1
/
projects
/
Copy
curl --request GET \
--url https://app.fastgen.ai/v1/projects/ \
--header 'Authorization: Bearer <token>'
Copy
[
{
"uuid": "a23f3b87-cf68-4db2-966a-22108ca0ab66",
"name": "Fastgen",
"created_at": "2024-12-18T18:37:03.504781626Z",
"updated_at": "2024-12-18T18:37:03.504781626Z"
},
{
"uuid": "23f3b87a-cf68-4db2-966a-22108ca0ab66",
"name": "Sandbox",
"created_at": "2024-12-18T18:37:03.504781626Z",
"updated_at": "2024-12-18T18:37:03.504781626Z"
}
]
Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Response
200 - application/json
OK
The response is of type object[]
.
Copy
curl --request GET \
--url https://app.fastgen.ai/v1/projects/ \
--header 'Authorization: Bearer <token>'
Copy
[
{
"uuid": "a23f3b87-cf68-4db2-966a-22108ca0ab66",
"name": "Fastgen",
"created_at": "2024-12-18T18:37:03.504781626Z",
"updated_at": "2024-12-18T18:37:03.504781626Z"
},
{
"uuid": "23f3b87a-cf68-4db2-966a-22108ca0ab66",
"name": "Sandbox",
"created_at": "2024-12-18T18:37:03.504781626Z",
"updated_at": "2024-12-18T18:37:03.504781626Z"
}
]
Assistant
Responses are generated using AI and may contain mistakes.