write_rows
Append rows of data to an existing dataset with automatic schema inference. All values are stored as text, with up to 10,000 rows per call.
Instructions
Append rows of data to an existing dataset. The schema is automatically inferred from the first batch. All values are stored as text. Maximum 10,000 rows per call; use multiple calls for larger datasets. Requires AUTARIO_API_KEY.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| dataset_id | Yes | The UUID of the dataset to append rows to | |
| rows | Yes | Array of row objects where keys are column names (e.g. [{"country": "USA", "year": "2024", "value": "25000"}]) |