API Reference
Get items from a dataset
Python
from autoblocks.api.app_client import AutoblocksAppClient client = AutoblocksAppClient( api_key="<YOUR_API_KEY>", app_slug="my-app", ) retrieved_items = client.datasets.get_items( external_id="my-dataset", splits=["train", "test"] # optional )
[ { "id": "<string>", "revisionItemId": "<string>", "splits": [ "<string>" ], "data": {} } ]
API Key created in the Autoblocks Webapp
The dataset items were returned successfully
The response is of type object[].
object[]