Files
2026-01-30 03:04:10 +00:00

725 B

Append Data

Tinybird CLI supports three ways to append data to an existing datasource: local file, remote URL, or events payload.

CLI: tb datasource append

tb datasource append [datasource_name] --file /path/to/local/file
tb datasource append [datasource_name] --url https://url_to_csv
tb datasource append [datasource_name] --events '{"a":"b", "c":"d"}'

Notes:

You can also send POST request to v0/events (streaming) and v0/datasources (batch) endpoints.