Sharing Query Results
Updated Jul 21, 2026
DataMagik AutomateSharing Query Results
A query you build in the SQL Editor can be published to a share link — a clean, read-only page that shows the query's live results. Send the link to a colleague or embed it somewhere; anyone with the link sees the current data without opening the editor.
Creating a share link
- Open and run a saved query in the SQL Editor.
- Use the query's Share action to generate a link.
- Copy the generated URL — it has the form
https://data-magik.com/s/<slug>.
Opening that link renders a standalone results page: the query's columns and rows, refreshed from the data source each time the page loads.
What the viewer sees
- The query's results as a table, with the same columns your query returns.
- Live data — the page runs the saved query when opened, so results stay current.
- No editor, no credentials, and no way to change the query — it is strictly read-only.
Share responsibly. Anyone with the link can see the
results, so only share queries whose output is safe for the recipients. If a query returns sensitive
rows, scope it (add a
WHERE filter) before sharing, and remove the link when it is no
longer needed.Related: Build and parameterize queries in the
SQL Editor; control which data each user can query with
SQL Access Roles.