POSThttp://localhost:5173/api/v1/private/datasets/items/stream
Body Parameters
View in API Reference
Request
1import requests
2
3# Stream dataset items (POST /v1/private/datasets/items/stream)
4response = requests.post(
5 "http://localhost:5173/api/v1/private/datasets/items/stream",
6 headers={},
7 json={
8 "dataset_name": "dataset_name"
9 },
10)
11
12print(response.json())
Response