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.
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.
Create content provenance check
curl https://api.openai.com/v1/content_provenance_checks \
-H 'Content-Type: multipart/form-data' \
-H "Authorization: Bearer $OPENAI_API_KEY" \
-F 'file=@/path/to/file'{
"created_at": 0,
"object": "content_provenance_check",
"results": [
{
"generated_at": "generated_at",
"issuer": "issuer",
"model": "model",
"outcome": "detected",
"type": "c2pa",
"validation_state": "trusted"
}
]
}Returns Examples
{
"created_at": 0,
"object": "content_provenance_check",
"results": [
{
"generated_at": "generated_at",
"issuer": "issuer",
"model": "model",
"outcome": "detected",
"type": "c2pa",
"validation_state": "trusted"
}
]
}