All Tips
Tips are often anonymous in nature and come from members of our community.
Querying over HTTP
Splitgraph serves as an HTTP API that lets you run SQL queries directly on
this data to power Web applications. For example:
curl https://data.splitgraph.com/sql/query/ddn \
-H "Content-Type: application/json" \
-d@-<<EOF
{"sql": "
SELECT *
FROM \"stat-stpete/all-tips-v5at-unyi\".\"all_tips\"
LIMIT 100
"}
EOF
See the Splitgraph documentation
for more information.