Read only
Use the public browser query first
The default advanced step is still a browser tool, not local SQL. Use the dashboard's read-only query view when you need filtered rows or CSV export.
Dashboard route: /analytics/
Use the Browse Data tab or the live table query panel inside a dataset workspace.
API
Pull catalog metadata from CKAN
Use the CKAN action API when you need programmatic access to dataset metadata, resource URLs, or search results.
/api/3/action/package_search?rows=25&q=crime
/api/3/action/package_show?id=dmv-crime-incidents-2019-2021-dataset
Local only
Use SQL only for pilot maintenance
SQL is optional and only relevant on the local pilot machine. It is useful for validation, export checks, and internal QA, not for normal classroom browsing.
SELECT *
FROM bsos_browser.materialized_dataset_inventory
ORDER BY dataset_name
LIMIT 25;
Default teaching flow: stay on the public dataset and dashboard pages. Drop to API or SQL only when you need automation or pilot maintenance.