API Library of Assets on the NJOIT Open Data Center
Information about all the assets on Data.NJ.Gov including information about their API's and how to use them.
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 \"nj-gov/api-library-of-assets-on-the-njoit-open-data-dxd8-u9zw\".\"api_library_of_assets_on_the_njoit_open_data\"
LIMIT 100
"}
EOF
See the Splitgraph documentation
for more information.