meta() | GET /v1/meta | Platform constants |
search(q, *, limit, offset, ...) | GET /v1/data-apps | One page of cards, including pagination |
get_app(app_id) | GET /v1/data-apps/{app_id} | Full app detail |
run(app_id, inputs, *, wait, max_records, version, build) | POST /v1/data-apps/{app_id}/runs | Start a run |
call(app_id, inputs, *, max_records, timeout, raise_on_failure, ...) | POST + poll | Blocking helper: wait until terminal or timeout |
get_run(run_id, *, wait) | GET /v1/runs/{run_id} | 状態と課金スナップショット |
list_runs_page(filters) | GET /v1/runs | One page of runs, including pagination |
list_runs(filters) | GET /v1/runs | 実行 1 ページ(items のみ) |
iterate_runs(filters) | GET /v1/runs | 自動ページングイテレータ |
cancel(run_id) | POST /v1/runs/{run_id}/cancel | Cancel a run |
get_records(run_id, *, offset, limit, fields) | GET /v1/runs/{run_id}/records | One page of result records |
iterate_records(run_id, *, batch, fields) | GET /v1/runs/{run_id}/records | 自動ページングイテレータ |
export_records(run_id, format) | GET /v1/runs/{run_id}/records | Full export as jsonl / csv text |
list_datasets(*, offset, limit) | GET /v1/datasets | データセット一覧 |
set_dataset_retention(dataset_id, retained) | PUT /v1/datasets/{dataset_id}/retention | Set retention flag |
get_dataset_records(dataset_id, *, offset, limit, fields) | GET /v1/datasets/{dataset_id}/records | One page of dataset records |
iterate_dataset_records(dataset_id, *, batch, fields) | GET /v1/datasets/{dataset_id}/records | 自動ページングイテレータ |
account() | GET /v1/account | アカウント情報と累計支出 |
billing(*, group_by, created_from, created_to, tz_offset) | GET /v1/billing | Billing aggregation |