工具 API

get-dataset-items

Get items (rows) from a dataset — the output/results produced by an Actor run. Returns the rows themselves, not dataset metadata, counts, or a schema. When the user provides a datasetId and asks to retrieve results, output, data, or rows, call this tool directly. Default limit is 20. Use clean=true to skip empty items and hidden fields. USAGE: - Use when you need to read data from a dataset (all items or only selected fields). USAGE EXAMPLES: - user_input: Retrieve results from dataset abc123 - user_input: Get only metadata.url and title from dataset username~my-dataset

creativeOAuth1 积分

调用信息

工具标识
apify-mcp-server.get-dataset-items
服务提供方
Apify
平均响应
0 ms
近 7 天调用
0

输入参数

datasetId必填

Dataset ID or username~dataset-name.

clean

If true, returns only non-empty items and skips hidden fields (starting with #). Shortcut for skipHidden=true and skipEmpty=true.

offset

Number of items to skip at the start. Default is 0.

limit

Maximum number of items to return. Default is 20.

fields

Comma-separated list of fields to include in results. Fields in output are sorted as specified. Use dot notation for nested objects (e.g. "metadata.url"); the server auto-flattens parent prefixes.

omit

Comma-separated list of fields to exclude from results.

desc

If true, results are returned in reverse order (newest to oldest).

flatten

Comma-separated list of fields to flatten (e.g. flatten="metadata" turns {"metadata":{"url":"x"}} into {"metadata.url":"x"}). Normally derived automatically from dot-notation in `fields`; specify only as a diagnostic override.