POST
/
v1
/
projects
curl --request POST \
  --url https://app.fastgen.ai/v1/projects/ \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "Name": "Fastgen"
}'
{
  "uuid": "a23f3b87-cf68-4db2-966a-22108ca0ab66",
  "name": "Fastgen",
  "created_at": "2024-12-18T18:37:03.504781626Z",
  "updated_at": "2024-12-18T18:37:03.504781626Z"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json
Name
string

Response

200 - application/json
OK
uuid
string

The project's unique identifier (36 characters)

name
string

The project's name

created_at
string

The timestamp of creation

updated_at
string

The timestamp of last update