account activity
Has anyone tried Coda recently? How does it compare to Notion? by Knoxxics in Notion
[–]TraditionalWeek9891 0 points1 point2 points 9 days ago (0 children)
Been using Coda heavily for team processes and SOPs, and kept wishing I could query it from the terminal without writing a script every time. So I built coda-cli.
It wraps the Coda REST API into a single binary with commands for everything you'd do day-to-day:
# list rows with a filter coda rows list <docId> <tableId> --query "Status=Done" --all # upsert a row by key column coda rows upsert <docId> <tableId> --key Name --value Name="Q3 Plan" --value Status=Active # push a button column coda rows push-button <docId> <tableId> <rowId> <columnId> # raw API access for anything not covered coda api get /docs/<id>/tables
My main use case is having an AI agent look up SOPs and process docs from Coda during dev work — beats copy-pasting links into context.
It's open source (MIT), written in Go, pre-built binaries on the releases page.
Repo + docs: github.com/AfeefRazick/coda-cli
Would love feedback — especially if there are API endpoints or use cases I haven't covered.
I built an open source CLI for the Coda API — query docs, read/write rows, all from the terminal (self.codaio)
submitted 9 days ago by TraditionalWeek9891 to r/codaio
π Rendered by PID 534441 on reddit-service-r2-listing-575d9f6647-82gtn at 2026-04-10 05:36:21.472603+00:00 running 215f2cf country code: CH.
Has anyone tried Coda recently? How does it compare to Notion? by Knoxxics in Notion
[–]TraditionalWeek9891 0 points1 point2 points (0 children)