> For the complete documentation index, see [llms.txt](https://doc.celantur.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://doc.celantur.com/cloud-api/examples.md).

# Examples

## Ready-to-use sample script

Get started by using the linked sample script.

<https://github.com/celantur/celantur-examples/blob/main/cloud-api/cloud-api-v2-client.py>

{% code title="Usage" overflow="wrap" %}

```bash
cloud-api-v2-client.py -i input-folder -o output-folder -u "username" -p "password" -c configuration.json
```

{% endcode %}

Tasks are configured via properties in the `configuration.json` file.\
For reference, see [API Endpoints](/cloud-api/api-endpoints.md#create-anonymization-task).

{% code title="configuration.json" %}

```json
{
    "anonymization_method": "blur",
    "face": true,
    "license-plate": true
}
```

{% endcode %}
