POST
/
v0
/
project
curl --request POST \
  --url 'https://api.unify.ai/v0/project' \
  --header "Authorization: Bearer $UNIFY_KEY" \
  --header 'Content-Type: application/json' \
  --data '{
    "name": "eval-project"
}'
{
    "info": "Project created successfully!"
}

Creates a logging project and adds this to your account. This project will have a set of logs associated with it.

Authorizations

Authorization
string
required

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

Body

name
string
required

A unique, user-defined name used when referencing the project.

curl --request POST \
  --url 'https://api.unify.ai/v0/project' \
  --header "Authorization: Bearer $UNIFY_KEY" \
  --header 'Content-Type: application/json' \
  --data '{
    "name": "eval-project"
}'
{
    "info": "Project created successfully!"
}