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 dataset via UI
You can download the entire dataset via the UI.
Export datasets from Arize AX via code or UI
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 dataset object with metadata
dataset = client.datasets.get(dataset_id=dataset_id)
# Get specific examples from the dataset
examples_response = client.datasets.list_examples(dataset_id=dataset_id, all=True)
for example in examples_response:
print(example)
Was this page helpful?
Suggestions