Datasets
Read dataset records
Page through records in a dataset. Supports JSON, JSONL, CSV, and column projection.
GET
Read dataset records
GET https://api-datahub.octoparse.com/v1/datasets/{dataset_id}/records
Authentication: API key required (Authorization: Bearer <API Key>).
Pages through records stored in a dataset. Parameters match Read run records. The visibility gate matches Dataset detail: invisible datasets return 404.
Request
Path parameters
string
required
Dataset id.
Query parameters
integer
Offset, starting at 0.
integer
Page size.
string
Comma-separated field projection.
string
default:"json"
json, jsonl, or csv.Example request
Response
200 success
Forformat=json, the payload is wrapped in data with items and pagination. For jsonl / csv, the body is the raw text stream without the envelope.
Errors
Error responses use
{"error": {code, category, message, retryable}}. See Errors.