POST
/
v2
/
plagiarism
curl --request POST \
  --url https://api.gowinston.ai/v2/plagiarism \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "text": "<string>",
  "file": "<string>",
  "website": "<string>",
  "excluded_sources": [
    "<string>"
  ],
  "language": "en",
  "country": "us"
}'
{
  "status": 123,
  "scanInformation": {
    "service": "<string>",
    "scanTime": "<string>",
    "inputType": "<string>"
  },
  "result": {
    "score": 123,
    "sourceCounts": 123,
    "textWordCounts": 123,
    "totalPlagiarismWords": 123,
    "identicalWordCounts": 123,
    "similarWordCounts": 123
  },
  "sources": [
    {
      "score": 123,
      "canAccess": true,
      "url": "<string>",
      "title": "<string>",
      "plagiarismWords": 123,
      "identicalWordCounts": 123,
      "similarWordCounts": 123,
      "totalNumberOfWords": 123,
      "author": "<string>",
      "description": "<string>",
      "publishedDate": 123,
      "source": "<string>",
      "citation": true,
      "plagiarismFound": [
        {
          "startIndex": 123,
          "endIndex": 123,
          "sequence": "<string>"
        }
      ],
      "is_excluded": true
    }
  ],
  "attackDetected": {
    "zero_width_space": true,
    "homoglyph_attack": true
  },
  "text": "<string>",
  "similarWords": [
    {
      "index": 123,
      "word": "<string>"
    }
  ],
  "citations": [
    "<string>"
  ],
  "indexes": [
    {
      "startIndex": 123,
      "endIndex": 123,
      "sequence": "<string>"
    }
  ],
  "credits_used": 123,
  "credits_remaining": 123
}

Authorizations

Authorization
string
header
required

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

Body

application/json

The body is of type object.

Response

204
application/json
Plagiarism response

The response is of type object.