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
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Path Parameters
Name of the project containing the context.
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"
}