Skip to main content
GET
/
api
/
public
/
v1
/
slice-runs
/
{id}
/
evidence
Get run evidence
import requests

url = "https://app.oneperfectslice.ai/api/public/v1/slice-runs/{id}/evidence"

headers = {"Authorization": "Bearer <token>"}

response = requests.get(url, headers=headers)

print(response.text)
{
  "data": {
    "summary": {
      "totalSources": 15,
      "totalElements": 2,
      "sourceBreakdown": {
        "transcript": 12,
        "crm_deal": 3
      }
    },
    "elements": {}
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.oneperfectslice.ai/llms.txt

Use this file to discover all available pages before exploring further.

This endpoint only works for completed runs. If the run is still in progress, you’ll get a 409 RUN_NOT_COMPLETED error. Poll Get run details first to confirm the run has finished.

Authorizations

Authorization
string
header
default:sk_your_api_key
required

API key with sk_ prefix. Create one in Org Settings → API Keys.

Path Parameters

id
integer<int64>
required

Run ID

Response

Evidence grouped by element

data
object
required