GET
/
v0
/
project
/
{project_name}
curl --request GET \
  --url 'https://api.unify.ai/v0/project/proj/a' \
  --header "Authorization: Bearer $UNIFY_KEY"
{
    "name": "my-project",
    "description": "A sample project for evaluation",
    "is_versioned": true,
    "created_at": "2023-01-01T00:00:00Z",
    "updated_at": "2023-01-02T00:00:00Z"
}

Returns detailed information about a specific project.

Authorizations

Authorization
string
required

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

Path Parameters

project_name
string
required

Project name, may contain slashes

curl --request GET \
  --url 'https://api.unify.ai/v0/project/proj/a' \
  --header "Authorization: Bearer $UNIFY_KEY"
{
    "name": "my-project",
    "description": "A sample project for evaluation",
    "is_versioned": true,
    "created_at": "2023-01-01T00:00:00Z",
    "updated_at": "2023-01-02T00:00:00Z"
}