GET
/
image
/
{id}
curl --request GET \
  --url https://api.contentmod.io/image/{id} \
  --header 'Authorization: Bearer <token>'
{
  "summary": {
    "totalFlags": 1,
    "contentRating": "G",
    "language": "en"
  },
  "isSafe": true,
  "confidence": 90,
  "description": "This is a description",
  "riskScores": {
    "overall": 90,
    "spam": 90,
    "toxicity": 90
  },
  "topics": [
    "politics",
    "sports"
  ],
  "nsfwCategories": [
    {
      "category": "sexual",
      "severity": 90
    }
  ],
  "suggestedActions": {
    "reject": true,
    "review": true
  },
  "meta": "<any>",
  "hash": "93a08bd10cd367bf83f12ba6590fcaef2f8deec8a47ce4ce88a15c7dda325ffa"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

id
string
required
Minimum length: 3
Example:

"27fbdc0b-b295-46ce-93f5-81b2fc08a381"

Response

200 - application/json

Fetch a image moderation by its ID

The response is of type object.