### List Snapshots using cURL Source: https://docs.getdx.com/webapi/overview Example of how to make a GET request to the DX Web API to list snapshots. It demonstrates authentication using a bearer token and the expected URL format. ```Bash curl -X GET https://api.getdx.com/snapshots.list \ --header 'Authorization: Bearer xxxx-xxxxxxxxx-xxxx' ``` -------------------------------- ### Successful API Response Source: https://docs.getdx.com/webapi/overview Illustrates the JSON structure of a successful response from the DX Web API, indicating the 'ok' property is set to true. ```JSON { "ok": true } ``` -------------------------------- ### Error API Response Source: https://docs.getdx.com/webapi/overview Shows the JSON format for an error response from the DX Web API, where the 'ok' property is false and includes an error code and message. ```JSON { "ok": false, "error": "invalid_arguments" } ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.