---
title: "Create content provenance check"
method: POST
path: "/content_provenance_checks"
---

# Create content provenance check

`POST /content_provenance_checks`

Check whether an image or audio file contains known OpenAI provenance signals. [Learn more about content provenance](/api/docs/guides/content-provenance).

If `not_detected`, it means the tool did not find supported signals in the uploaded file. The content could still have been generated by OpenAI if the metadata was stripped or has evidence of tampering, the watermark was degraded, it comes from a legacy generation model, or it was created before provenance signals were available. Content could also still be AI-generated by another company's model, which the tool currently does not detect.

## Response `200`

Success

- ProvenanceResource
  - `object` 'content_provenance_check', required
  - `created_at` integer, required — The Unix timestamp, in seconds, when the provenance check was created.
  - `results` union[], required — The provenance results that apply to the uploaded file. Image results include C2PA and SynthID; audio results include SynthID.
    - union
      - C2PAProvenanceResult
        - `type` 'c2pa', required — The provenance signal type. Always `c2pa`.
        - `outcome` 'detected' | 'not_detected', required
        - `validation_state` 'trusted' | 'valid' | 'invalid' | 'not_present', required
        - `issuer` string, nullable, required — The C2PA manifest issuer, when available.
        - `model` string, nullable, required — The OpenAI model recorded by the provenance signal, when available.
        - `generated_at` string, nullable, required — The UTC RFC 3339 timestamp recorded by the provenance signal for when the asset was generated, when available.
      - SynthIDProvenanceResult
        - `type` 'synthid', required — The provenance signal type. Always `synthid`.
        - `outcome` 'detected' | 'not_detected', required
        - `model` string, nullable, required — The OpenAI model recorded by the provenance signal, when available.
        - `generated_at` string, nullable, required — The UTC RFC 3339 timestamp recorded by the provenance signal for when the asset was generated, when available.

---

[API](https://skmtc.net/openai/apis/openai-api.md) · [All operations](https://skmtc.net/openai/apis/openai-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/openai/openai-api/versions/dcd35773a322/schema)
