---
title: Get Image Transformations C2PA setting
---

[Skip to content](#%5Ftop) 

[API Reference](https://developers.cloudflare.com/api/python)

[Zones](https://developers.cloudflare.com/api/python/resources/zones)

[Transformations C2pa](https://developers.cloudflare.com/api/python/resources/zones/subresources/transformations%5Fc2pa)

Copy Markdown

Open in **Claude**

Open in **ChatGPT**

Open in **Cursor**

---

**Copy Markdown**

**View as Markdown**

# Get Image Transformations C2PA setting

zones.transformations\_c2pa.get(TransformationsC2paGetParams\*\*kwargs)  \-> [TransformationsC2pa](https://developers.cloudflare.com/api/python/resources/zones#%28resource%29%20zones.transformations%5Fc2pa%20%3E%20%28model%29%20transformations%5Fc2pa%20%3E%20%28schema%29)

GET/zones/{zone\_id}/settings/transformations\_c2pa

C2PA (Coalition for Content Provenance and Authenticity) signing adds cryptographic metadata to images processed through Cloudflare Image Transformations, enabling verification of image authenticity and provenance.

##### Security

API Token

The preferred authorization scheme for interacting with the Cloudflare API. [Create a token](https://developers.cloudflare.com/fundamentals/api/get-started/create-token/).

**Example:**`Authorization: Bearer Sn3lZJTBX6kkg7OdcBUAxOO963GEIyGQqnFTOFYY`

API Email + API Key

The previous authorization scheme for interacting with the Cloudflare API, used in conjunction with a Global API key.

**Example:**`X-Auth-Email: user@example.com`

The previous authorization scheme for interacting with the Cloudflare API. When possible, use API tokens instead of Global API keys.

**Example:**`X-Auth-Key: 144c9defac04969c7bfad8efaa8ea194`

##### Accepted Permissions (at least one required)

`Zone Settings Write` `Zone Settings Read`

##### ParametersExpand Collapse 

zone\_id: str

Identifier.

maxLength32

##### ReturnsExpand Collapse 

class TransformationsC2pa: …

Controls C2PA signing for images processed through Cloudflare Image Transformations.

id: Optional\[Literal\["image\_resizing\_c2pa"\]\]

ID of the zone setting.

editable: Optional\[Literal\[true, false\]\]

Whether or not this setting can be modified for this zone (based on your Cloudflare plan level).

One of the following:

true

false

modified\_on: Optional\[datetime\]

last time this setting was modified.

formatdate-time

value: Optional\[Literal\["on", "off"\]\]

Current value of the zone setting.

One of the following:

"on"

"off"

### Get Image Transformations C2PA setting

Python

HTTPHTTP

TypeScriptTypeScript

PythonPython

GoGo

TerraformTerraform

```
import os
from cloudflare import Cloudflare

client = Cloudflare(
    api_token=os.environ.get("CLOUDFLARE_API_TOKEN"),  # This is the default and can be omitted
)
transformations_c2pa = client.zones.transformations_c2pa.get(
    zone_id="023e105f4ecef8ad9ca31a8372d0c353",
)
print(transformations_c2pa.id)
```

200 example

```
{
  "errors": [
    {
      "code": 1000,
      "message": "message",
      "documentation_url": "documentation_url",
      "source": {
        "pointer": "pointer"
      }
    }
  ],
  "messages": [
    {
      "code": 1000,
      "message": "message",
      "documentation_url": "documentation_url",
      "source": {
        "pointer": "pointer"
      }
    }
  ],
  "success": true,
  "result": {
    "id": "image_resizing_c2pa",
    "editable": true,
    "modified_on": "2014-01-01T05:20:00.12345Z",
    "value": "on"
  }
}
```

##### Returns Examples

200 example

```
{
  "errors": [
    {
      "code": 1000,
      "message": "message",
      "documentation_url": "documentation_url",
      "source": {
        "pointer": "pointer"
      }
    }
  ],
  "messages": [
    {
      "code": 1000,
      "message": "message",
      "documentation_url": "documentation_url",
      "source": {
        "pointer": "pointer"
      }
    }
  ],
  "success": true,
  "result": {
    "id": "image_resizing_c2pa",
    "editable": true,
    "modified_on": "2014-01-01T05:20:00.12345Z",
    "value": "on"
  }
}
```