curl -X POST https://plagiarism.api.pangram.com \ -H "Content-Type: application/json" \ -H "x-api-key: your_api_key_here" \ -d '{ "text": "The text to check for plagiarism" }'
Example Response
Copy
{ "text": "The text to check for plagiarism", "plagiarism_detected": true, "plagiarized_content": [ { "source_url": "https://example.com/source", "matched_text": "The text to check for plagiarism", "similarity_score": 0.95 } ], "total_sentences": 1, "plagiarized_sentences": 1, "percent_plagiarized": 100.0}