curl --request GET \
--url 'https://api-prod.usefini.com/v2/test-sets/44c1f705-8e1a-4f61-8c4c-d519d37fb6b7/public' \
--header 'Authorization: Bearer fini_your_api_key'
const testSetId = '44c1f705-8e1a-4f61-8c4c-d519d37fb6b7';
const response = await fetch(`https://api-prod.usefini.com/v2/test-sets/${testSetId}/public`, {
method: 'GET',
headers: {
Authorization: 'Bearer fini_your_api_key'
}
});
const testSet = await response.json();
import requests
test_set_id = "44c1f705-8e1a-4f61-8c4c-d519d37fb6b7"
response = requests.get(
f"https://api-prod.usefini.com/v2/test-sets/{test_set_id}/public",
headers={"Authorization": "Bearer fini_your_api_key"},
)
test_set = response.json()
{
"id": "44c1f705-8e1a-4f61-8c4c-d519d37fb6b7",
"companyId": "1d2a4c9f-59f8-4f9c-bd36-6f12e0d5d927",
"name": "Refund regression set",
"description": "Refund-policy conversations to re-check before prompt changes.",
"conversationIds": [
"a5221094-72d4-4b9c-8d30-2f785b108bd9",
"2dd2b920-f57c-4e92-8a6a-f310d4c8594d"
],
"conversations": [
{
"id": "a5221094-72d4-4b9c-8d30-2f785b108bd9",
"subject": "Customer asks about refund eligibility"
},
{
"id": "2dd2b920-f57c-4e92-8a6a-f310d4c8594d",
"subject": "Exchange request after delivery"
}
],
"criteria": [
{
"id": "96eab02d-3bc3-4b90-ae5b-1a41a1444afa",
"testSetId": "44c1f705-8e1a-4f61-8c4c-d519d37fb6b7",
"companyId": "1d2a4c9f-59f8-4f9c-bd36-6f12e0d5d927",
"defaultCriterionId": null,
"name": "Goal resolution",
"type": "complex_judge",
"judgePrompt": "Judge whether the conversation resolved the user's goal.",
"passPrompt": "The user's goal was resolved.",
"failPrompt": "The user's goal was not resolved.",
"condition": null,
"blocking": true,
"isActive": true,
"createdAt": "2026-07-28T08:56:12.000Z",
"updatedAt": "2026-07-28T08:56:12.000Z"
}
],
"createdBy": null,
"createdAt": "2026-07-28T08:55:32.000Z",
"updatedAt": "2026-07-28T08:56:12.000Z"
}
Test Sets
Get a test set
Fetch one test set with its resolved criteria.
GET
/
v2
/
test-sets
/
{testSetId}
/
public
curl --request GET \
--url 'https://api-prod.usefini.com/v2/test-sets/44c1f705-8e1a-4f61-8c4c-d519d37fb6b7/public' \
--header 'Authorization: Bearer fini_your_api_key'
const testSetId = '44c1f705-8e1a-4f61-8c4c-d519d37fb6b7';
const response = await fetch(`https://api-prod.usefini.com/v2/test-sets/${testSetId}/public`, {
method: 'GET',
headers: {
Authorization: 'Bearer fini_your_api_key'
}
});
const testSet = await response.json();
import requests
test_set_id = "44c1f705-8e1a-4f61-8c4c-d519d37fb6b7"
response = requests.get(
f"https://api-prod.usefini.com/v2/test-sets/{test_set_id}/public",
headers={"Authorization": "Bearer fini_your_api_key"},
)
test_set = response.json()
{
"id": "44c1f705-8e1a-4f61-8c4c-d519d37fb6b7",
"companyId": "1d2a4c9f-59f8-4f9c-bd36-6f12e0d5d927",
"name": "Refund regression set",
"description": "Refund-policy conversations to re-check before prompt changes.",
"conversationIds": [
"a5221094-72d4-4b9c-8d30-2f785b108bd9",
"2dd2b920-f57c-4e92-8a6a-f310d4c8594d"
],
"conversations": [
{
"id": "a5221094-72d4-4b9c-8d30-2f785b108bd9",
"subject": "Customer asks about refund eligibility"
},
{
"id": "2dd2b920-f57c-4e92-8a6a-f310d4c8594d",
"subject": "Exchange request after delivery"
}
],
"criteria": [
{
"id": "96eab02d-3bc3-4b90-ae5b-1a41a1444afa",
"testSetId": "44c1f705-8e1a-4f61-8c4c-d519d37fb6b7",
"companyId": "1d2a4c9f-59f8-4f9c-bd36-6f12e0d5d927",
"defaultCriterionId": null,
"name": "Goal resolution",
"type": "complex_judge",
"judgePrompt": "Judge whether the conversation resolved the user's goal.",
"passPrompt": "The user's goal was resolved.",
"failPrompt": "The user's goal was not resolved.",
"condition": null,
"blocking": true,
"isActive": true,
"createdAt": "2026-07-28T08:56:12.000Z",
"updatedAt": "2026-07-28T08:56:12.000Z"
}
],
"createdBy": null,
"createdAt": "2026-07-28T08:55:32.000Z",
"updatedAt": "2026-07-28T08:56:12.000Z"
}
Returns a test set with its resolved criteria and conversation summaries.
Headers
string
required
Bearer token containing your Fini workspace API key. Format:
Bearer fini_... The key needs read scope.Path parameters
string
required
Test set ID.
Response
Returns a TestSet object with acriteria array of Criterion objects and a conversations array of conversation summaries.
curl --request GET \
--url 'https://api-prod.usefini.com/v2/test-sets/44c1f705-8e1a-4f61-8c4c-d519d37fb6b7/public' \
--header 'Authorization: Bearer fini_your_api_key'
const testSetId = '44c1f705-8e1a-4f61-8c4c-d519d37fb6b7';
const response = await fetch(`https://api-prod.usefini.com/v2/test-sets/${testSetId}/public`, {
method: 'GET',
headers: {
Authorization: 'Bearer fini_your_api_key'
}
});
const testSet = await response.json();
import requests
test_set_id = "44c1f705-8e1a-4f61-8c4c-d519d37fb6b7"
response = requests.get(
f"https://api-prod.usefini.com/v2/test-sets/{test_set_id}/public",
headers={"Authorization": "Bearer fini_your_api_key"},
)
test_set = response.json()
{
"id": "44c1f705-8e1a-4f61-8c4c-d519d37fb6b7",
"companyId": "1d2a4c9f-59f8-4f9c-bd36-6f12e0d5d927",
"name": "Refund regression set",
"description": "Refund-policy conversations to re-check before prompt changes.",
"conversationIds": [
"a5221094-72d4-4b9c-8d30-2f785b108bd9",
"2dd2b920-f57c-4e92-8a6a-f310d4c8594d"
],
"conversations": [
{
"id": "a5221094-72d4-4b9c-8d30-2f785b108bd9",
"subject": "Customer asks about refund eligibility"
},
{
"id": "2dd2b920-f57c-4e92-8a6a-f310d4c8594d",
"subject": "Exchange request after delivery"
}
],
"criteria": [
{
"id": "96eab02d-3bc3-4b90-ae5b-1a41a1444afa",
"testSetId": "44c1f705-8e1a-4f61-8c4c-d519d37fb6b7",
"companyId": "1d2a4c9f-59f8-4f9c-bd36-6f12e0d5d927",
"defaultCriterionId": null,
"name": "Goal resolution",
"type": "complex_judge",
"judgePrompt": "Judge whether the conversation resolved the user's goal.",
"passPrompt": "The user's goal was resolved.",
"failPrompt": "The user's goal was not resolved.",
"condition": null,
"blocking": true,
"isActive": true,
"createdAt": "2026-07-28T08:56:12.000Z",
"updatedAt": "2026-07-28T08:56:12.000Z"
}
],
"createdBy": null,
"createdAt": "2026-07-28T08:55:32.000Z",
"updatedAt": "2026-07-28T08:56:12.000Z"
}
Was this page helpful?
⌘I

