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
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Body
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!"
}