GET
Check whether a SHA-256 content hash already has public protections. Use this before protecting content to detect exact duplicates and avoid re-protecting content that someone else has already registered.
Authentication is optional. When you include an API key, your own protections are excluded from the results so you only see matches from other users.
Only protections with /v1/consumer/similarityvisibility: "public" are searched. Private protections are never returned.
Parameters
SHA-256 hash of the content to check. Must match the hex-encoded hash format used when protecting content.
Responses
Response fields
| Field | Type | Description |
|---|---|---|
content_hash | string | The hash you submitted, echoed back for confirmation. |
exact_match | boolean | true if at least one public protection exists for this hash. |
matches | array | Up to 10 matching protections, ordered by creation date. |
matches[].attestation_id | string | Attestation ID of the matching protection. |
matches[].title | string | Title of the matching protection. |
matches[].category | string | Content category (e.g. photography, code, design). |
matches[].similarity_score | number | Always 1.0 for exact hash matches. |
matches[].protected_at | string | ISO 8601 timestamp when the content was protected. |
matches[].owner_username | string | Public username of the protection owner, if set. |
total | integer | Total number of matches found. |
