API
Parameterized queries can also be made through the data.world public API. Note that non-parameterized queries can be executed with a GET request to the same endpoint, but in order to specify the parameters, a POST request must be made with the parameters specified in the body of the request.
Example curl command:
curl -X POST \ https://api.data.world/v0/queries/${DW_QUERY_ID}/results \ -H 'Accept: application/json' \ -H 'Authorization: Bearer ${DW_API_TOKEN}' \ -H 'Content-Type: application/json' \ -d '{ "parameters" : { "parameterName1" : "parameter value 1", "parameterName2" : "parameter value 2" } }' |
See the API docs for more information.