Skip to main content
POST
/
v2
/
projects
Create Project
curl --request POST \
  --url https://api.galileo.ai/v2/projects \
  --header 'Content-Type: application/json' \
  --header 'Galileo-API-Key: <api-key>' \
  --data '{
  "name": "my_first_project"
}'
{
  "name": "<string>",
  "created_by": "<string>",
  "type": "training_inference",
  "id": "<string>",
  "created_at": "2023-11-07T05:31:56Z",
  "updated_at": "2023-11-07T05:31:56Z"
}

Authorizations

Galileo-API-Key
string
header
required

Body

application/json
name
string
required
Minimum length: 1
created_by
string<uuid4> | null
type
enum<string>
Available options:
training_inference,
prompt_evaluation,
llm_monitor,
protect,
gen_ai
create_example_templates
boolean
default:false

Response

Successful Response

id
string<uuid4>
required
created_at
string<date-time>
required
updated_at
string<date-time>
required
name
string | null
created_by
string<uuid4> | null
type
enum<string> | null
Available options:
training_inference,
prompt_evaluation,
llm_monitor,
protect,
gen_ai
I