Documentation Index
Fetch the complete documentation index at: https://arize-ax.mintlify.dev/docs/llms.txt
Use this file to discover all available pages before exploring further.
Get an experiment via UI

How to export your experiment results
Documentation Index
Fetch the complete documentation index at: https://arize-ax.mintlify.dev/docs/llms.txt
Use this file to discover all available pages before exploring further.

from arize import ArizeClient
client = ArizeClient(api_key="your-arize-api-key")
# Get experiment object with metadata
experiment = client.experiments.get(experiment_id="your-experiment-id")
# Get individual experiment runs
runs_response = client.experiments.list_runs(experiment_id="your-experiment-id")
for run in runs_response.experiment_runs:
print(run)
Was this page helpful?
Suggestions