GET
/
apps
/
{appSlug}
/
datasets
/
{externalId}
/
items
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"
)
[
  {
    "id": "<string>",
    "revisionItemId": "<string>",
    "splits": [
      "<string>"
    ],
    "data": {}
  }
]

Authorizations

Authorization
string
header
required

API Key created in the Autoblocks Webapp

Path Parameters

appSlug
string
required
externalId
string
required

Response

200 - application/json

The dataset items were returned successfully

The response is of type object[].