GET
/
v0
/
project
/
{project}
/
contexts
/
{context_name}
/
artifacts
curl --request GET \
  --url 'https://api.unify.ai/v0/project/eval-project/contexts/training/artifacts' \
  --header "Authorization: Bearer $UNIFY_KEY"
{
    "artifact_1": "value_1",
    "artifact_2": "value_2"
}

Returns the key-value pairs of all artifacts in a context.

Authorizations

Authorization
string
required

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

Path Parameters

project
string
required

Name of the project containing the context.

context_name
string
required

Name of the context to list artifacts from.

curl --request GET \
  --url 'https://api.unify.ai/v0/project/eval-project/contexts/training/artifacts' \
  --header "Authorization: Bearer $UNIFY_KEY"
{
    "artifact_1": "value_1",
    "artifact_2": "value_2"
}