Retrieves the commit history for a versioned context.
Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
 
Path Parameters
curl --request GET \
  --url 'https://api.unify.ai/v0/project/<project_name>/contexts/<context_name>/commits' \
  --header "Authorization: Bearer $UNIFY_KEY"
 
{
    "commit_hash": "string",
    "commit_message": "string | null",
    "created_at": "string",
    "type": "string",
    "prev_commit_hash": "string | null",
    "next_commit_hash": "[string]"
}