export
carto export --connection <name> --source <table> --format <fmt>
carto export status <jobId> # Fetch status of an async export jobOptions
Option
Description
Examples
# Export as GeoParquet (waits, prints download URL)
carto export --connection carto_dw --source project.dataset.my_table --format geoparquet
# Export selected columns with a WHERE predicate and a row limit
carto export \
--connection carto_dw \
--source project.dataset.my_table \
--format csv \
--select name,lon,lat \
--where "year = 2025" \
--limit 10000
# Export directly to cloud storage
carto export \
--connection carto_dw \
--source project.dataset.my_table \
--format geojson \
--dest-url gs://my-bucket/exports/data.geojson
# Kick off async, then poll status separately
carto export --connection carto_dw --source project.dataset.big --format csv --async
carto export status <jobId>Last updated
Was this helpful?
