Grab your Exclusive Discount
SEC
00
MS
00

API ng Plagiarismo {API}

Isama ang makapangyarihang API ng Plagiarismo upang matukoy ang nilalamang plagiarized. Kumuha ng premyadong API ng Plagiarismo na may tumpak at agarang resulta.

black-diamond-pricingSuriin ang mga Plano ng API
Plagiarism Checker API
logo

Paano Mapapataas ng API ng Plagiarismo ang Level ng Iyong Negosyo?

Nag-aalok ang Plagiarismdetector.net ng API ng Plagiarismo, na tiyak na nagpapabilis sa pagtuklas ng pagkakatulad sa iyong nilalaman. Makakatulong ito sa iyo na subaybayan ang anumang pagdoble sa iyong nilalaman upang maiwasan ang anumang parusa para sa paggawa ng plagiarism. Ang pagkuha ng mga piraso ng plagiarism sa isang teksto ay nagpapataas ng kalidad ng nilalaman at nakakatipid sa iyo mula sa pagiging parusa ng mga search engine dahil sa plagiarized na nilalaman.

logo

Pagtuklas ng Plagiarismo sa Matalinong Pangungusap

Ang API ng Plagiarismo ay nagpapatakbo ng isang pagsubok sa plagiarism sa bawat pangungusap upang makuha ang anumang maliit na pagkakataon ng pagdoble sa nilalaman sa halip na umasa sa isang pagsusuri ng pagkakatulad lamang sa buong teksto.

logo

mabilis na pag -scan ng nilalaman

Ang Plagiarism API ay maaaring magbigay sa iyo ng walang kamali-mali na output kaagad. Papayagan ka nitong tumuon sa iba pang mahahalagang gawaing nauugnay sa negosyo upang mapataas ang pagiging produktibo sa halip na maghintay nang mas matagal upang makatanggap ng mga resulta ng pagsusuri sa plagiarism.

logo

Simple upang i -configure

Ang aming Plagiarism API ay simple at madaling i-configure. Walang espesyal na teknikal na kaalaman ang kinakailangan upang maisagawa ang gawaing ito.

logo

Maramihang paggamit ng website

Pinapayagan ang mga user na gamitin ang API na ito sa maraming device. Samakatuwid, hindi na kailangang i-verify ang account sa bawat oras habang kino-configure ang API na ito.

logo

tiktik ang nilalaman ng AI

Maaari mo na ngayong i-verify ang nilalaman ng iyong negosyo gamit ang aming award-winning na AI Detector. Tiyaking saklaw ang lahat ng iyong base, mula sa artificial intelligence hanggang sa paglabag sa copyright.

logo

Mga hakbang upang makuha ang aming plagiarism API

Upang makuha ang aming plagiarism API, dapat mong sundin ang ilang mga simpleng hakbang.

Pumunta nang direkta sa pahina ng pagpepresyo.

Ipaalam sa amin ang iyong mga kinakailangan.

Nagbibigay kami sa iyo ng Plagiarism API para maisama.

Panatilihin ka naming na -update, kaya manatiling nakatutok.

Pagsasama ng API ng Plagiarismo (Lisensya at Key)

Para maisama angAPI ng Plagiarismo sa iyong system o application, sundin ang mga hakbang na ito:

logo

Piliin ang Plagiarism API

Kumuha ng access sa aming Plagiarism API key.

logo

Basahin ang Dokumentasyon ng API ng Plagiarismo

Suriin ang dokumentasyon ng API tungkol sa plagiarism para sa:

  • Mga pamamaraan ng pagpapatunay
  • Mga endpoint para sa pagsusumite ng nilalaman.
  • Mga limitasyon sa rate
  • Format ng tugon
logo

I-set Up ang Iyong Development Environment

Kung nagsusulat ka ng code para sa pagsasaayos gamit ang API, kakailanganin mo:

  • Programming Language/Environment: Python, Node.js, cURL, atbp.
  • API Key mula sa aming serbisyo ng plagiarism

kulot

Binibigyang-daan ka ng CURL (Client URL) na maglipat ng data gamit ang mga URL gamit ang command-line tool. Maaari mong gamitin ang aming ibinigay na utos ng cURL sa iyong terminal upang suriin ang katayuan ng API:

Suriin ang Katayuan ng Account:

curl -X POST https://plagiarismdetector.net/api/info

-d "token=YOUR_TOKEN"

Tugon
{
    "name":  "pd", 
    "total_words" :   1500, 
    "used_words" :    1000, 
    "account_status" :  "active"
}
      

Suriin ang Plagiarism:

curl -X POST https://plagiarismdetector.net/api/checkplag

-d "token=YOUR_TOKEN"

-d "exclude_urls=["EXCLUDE URL1","EXCLUDE URL2","EXCLUDE URL3"]"

-d "data = On the red table, there was a purple curtain. Underneath that was a silver cage. Inside that cage there was a green teddy bear, with the number 43 written on its chest with a black permanent marker. Its eyes were as green as envy."

-d "url = PAGE_URL"

Tugon
{
    "recall":  true, 
    "totalQueries" :  5, 
    "key" :  1, 
    "hash" :  "04eb63e8b9588ac40a0b4515900eb6f7"  
}
      

Tandaan

Sinusuportahan na rin ngayon ng aming API ng Plagiarismo ang mga pagsusuri ng URL. Maaari kang magsumite ng nilalaman sa parameter ng data o isang URL ng pahina sa parameter ng URL. Kinakailangan ang isa sa dalawang parameter, ang data o URL.

NodeJS

Pinapatakbo ng NodeJS ang JavaScript sa V8 JavaScript engine ng Chrome. Maaari ring gamitin ng mga developer ang built-in na HTTP module o isang sikat na library tulad ng Axios upang suriin ang katayuan ng API ng Plagiarismo.

Suriin ang Katayuan ng Account:

var http = require("https");
var options = {
"method": "POST",
"hostname": [
    "plagiarismdetector.net",
   
],
"path": [
    "api",
    "info"
]
};

var req = http.request(options, function (res) {
var chunks = [];

res.on("data", function (chunk) {
    chunks.push(chunk);
});

res.on("end", function () {
    var body = Buffer.concat(chunks);
    console.log(body.toString());
});
});

req.write("Content-Disposition: form-data; name="token"
YOUR_TOKEN");
req.end();
        
Tugon
{
    "name":  "pd", 
    "total_words" :   1500, 
    "used_words" :    1000, 
    "account_status" :  "active"
}
      

Suriin ang Plagiarism:

Ginagamit ang paraang ito kapag gusto mong suriin ang duplicate na nilalaman ng isang artikulo, post o dokumento.

var http = require("http");

var options = {
"method": "POST",
"hostname": [
    "plagiarismdetector",
    "net"
],
"path": [
    "api",
    "checkplag"
]
};

var req = http.request(options, function (res) {
var chunks = [];

res.on("data", function (chunk) {
    chunks.push(chunk);
});

res.on("end", function () {
    var body = Buffer.concat(chunks);
    console.log(body.toString());
});
});

req.write("Content-Disposition: form-data; name='token'
YOUR_TOKEN
name='exclude_urls' ["EXCLUDE URL1","EXCLUDE URL2","EXCLUDE URL3"]
name='data'
On the red table, there was a purple curtain. Underneath that was a silver cage.  Inside that cage there was a green teddy bear, with the number 43 written on its chest with a black permanent marker. Its eyes were as green as envy.");
name='url' PAGE_URL
");
req.end();
        
Tugon
{
    "recall":  true, 
    "totalQueries" :  5, 
    "key" :  1, 
    "hash" :  "04eb63e8b9588ac40a0b4515900eb6f7"  
}
      

sawa

Python ay isang sikat na high-level interpreted programming language na madaling matutunan at maunawaan. Ito ay katugma sa ilang mga paradigm sa programming, tulad ng functional, object-oriented, at procedural programming. Maaari mong gamitin ang Python requests package para i-verify ang status ng aming plagiarism API.

Suriin ang Katayuan ng Account:

import requests

url = "https://plagiarismdetector.net/api/info"
payload={'token': 'API_TOKEN'}
headers = {}

response = requests.request("POST", url, headers=headers, data=payload)

print(response.text)
        
Tugon
{
    "name":  "pd", 
    "total_words" :   1500, 
    "used_words" :    1000, 
    "account_status" :  "active"
}
      

Suriin ang Plagiarism:

Ginagamit ang paraang ito kapag gusto mong suriin ang duplicate na nilalaman ng isang artikulo, post o dokumento.

import requests

url = "https://plagiarismdetector.net/api/checkplag"

payload={'token': 'API_TOKEN','exclude_urls': '["EXCLUDE URL1","EXCLUDE URL2","EXCLUDE URL3"]',
'data': 'On the red table, there was a purple curtain. Underneath that was a silver cage.  Inside that cage there was a green teddy bear, with the number 43 written on its chest with a black permanent marker. Its eyes were as green as envy.',
'url':'PAGE_URL'}
headers = {}

response = requests.request("POST", url, headers=headers, data=payload)

print(response.text)
        
Tugon
{
    "recall":  true, 
    "totalQueries" :  5, 
    "key" :  1, 
    "hash" :  "04eb63e8b9588ac40a0b4515900eb6f7"  
}
      

CallBack Url:

Pagkatapos makakuha ng tugon mula sa unang kahilingan kailangan mong humiling sa sumusunod na url na may ibinigay na mga parameter na ibinigay sa unang tugon.

curl -X GET https://plagiarismdetector.net/api/query-footprint/{hash}/{key}

Tugon
{
    "recall":  true, 
    "hash" : "04eb63e8b9588ac40a0b4515900eb6f7", 
    "key" :  2, 
}
      

Tandaan

Ulitin ang CallBack url na may mga bagong parameter hanggang {recall: true}

Tugon sa API ng Plagiarismo Pagkatapos Makumpleto ang Gawain:

Makukuha mo ang sumusunod na tugon mula sa aming API kapag tapos na ang gawain.

Tugon
{
    "recall":  false, 
    "totalQueries" :  5, 
    "plagPercent" :  20, 
    "uniquePercent" :  80, 
    "details" :    [
    {
        "query": "On the red table, there was a purple curtain.",
        "error": 0,
        "unique": "true"
    },
    {
        "query": "Underneath that was a silver cage.",
        "error": 0,
        "unique": "true"
    },
    {
        "query": "Inside that cage there was a green teddy bear",
        "error": 0,
        "unique": "true"
    },
    {
        "query": "The first of four orbital test flights occurred in 1981 leading to operational flights beginning in 1982.",
        "error": 0,
        "unique": "false",
        "webs": [
    {
        "title": "Examples for “orbital test flight” and how to use it - Nyanglish",
        "url": "http://nyanglish.com/orbital-test-flight",
        "des": "the first of four orbital test flights occurred in 1981, leading to operational flights beginning in 1982. they were used on a total of 135 missions from 1981 to 2011, launched from the kennedy space center (ksc) in florida."
    },
    {
        "title": "Space Shuttle - Wikipedia",
        "url": "https://en.m.wikipedia.org/wiki/Space_Shuttle",
        "des": "the first of four orbital test flights occurred in 1981, leading to operational flights beginning in 1982, all launched from the kennedy space center, florida.first operational flight of the space shuttle, first mission to carry four astronauts; sts-5. april 4, 1983. challenger."
    },
    {
        "title": "Advanced Crew Escape Suit - WikiVisually",
        "url": "https://wikivisually.com/lang-tr/wiki/Advanced_Crew_Escape_Suit",
        "des": "the first of four orbital test flights occurred in 1981, leading to operational flights beginning in 1982, all launched from the kennedy space center, florida. the system was retired from service in 2011 after 135 missions..."
    },
    {
        "title": "Space Shuttle Launch Jigsaw Puzzle",
        "url": "https://www.DailyJigsawPuzzles.net/plane-jigsaws/space-shuttle-launch_616.html",
        "des": "the first of four orbital test flights occurred in 1981, leading to operational flights beginning in 1982. it was used on a total of 135 missions from 1981 to 2011, launched from the kennedy space center (ksc) in florida. he first orbiter, enterprise..."
    },
    {
        "title": "STS/Space Shuttle | Maxwell Hunter",
        "url": "http://www.maxwellhunter.com/projects/space-shuttle",
        "des": "the first of four orbital test flights occurred in 1981, leading to operational flights beginning in 1982. they were used on a total of 135 missions from 1981 to 2011, launched from the kennedy space center (ksc) in florida."
    },
    {
        "title": "Мягкая посадка - WikiVisually",
        "url": "https://wikivisually.com/lang-ru/wiki/%D0%9C%D1%8F%D0%B3%D0%BA%D0%B0%D1%8F_%D0%BF%D0%BE%D1%81%D0%B0%D0%B4%D0%BA%D0%B0",
        "des": "the first of four orbital test flights occurred in 1981, leading to operational flights beginning in 1982, all launched from the kennedy space center, florida. the system was retired from service in 2011 after 135 missions..."
    },
    {
        "title": "GEOSPACE:",
        "url": "https://www.csun.edu/~mb304231/",
        "des": "the first of four orbital test flights occurred in 1981 leading to operational flights beginning in 1982. the system is scheduled to be retired from service in 2011 after 135 launches. major missions have included launching numerous satellites and interplanetary probes..."
    },
    {
        "title": "Space Shuttle Landing On The Moon - ma",
        "url": "http://machicon-akihabara.info/2017simage-space-shuttle-landing-on-the-moon.awp",
        "des": "the first of four orbital test flights occurred in 1981, leading to operational flights beginning in 1982. in addition to the prototype whose completion was cancelled, five complete shuttle systems were built and used on a total of 135 missions from 1981 to 2011..."
    },
    {
        "title": "Space Shuttle on Launchpad Minecraft Project",
        "url": "https://www.planetminecraft.com/project/space-shuttle-on-launchpad/",
        "des": "the first of four orbital test flights occurred in 1981, leading to operational flights beginning in 1982. they were used on a total of 135 missions from 1981 to 2011, launched from the kennedy space center (ksc) in florida."
    },
    {
        "title": "List of Space Shuttle missions - Mashpedia Free Video Encyclopedia",
        "url": "http://www.mashpedia.com/List_of_Space_Shuttle_missions",
        "des": "the first of four orbital test flights occurred in 1981, leading to operational flights beginning in 1982. from 1981 to 2011 a total of 135 missions were flown, launched from kennedy space center (ksc) in florida."
    }
      ]
    },
    {
            "query": "with the number 43 written on its chest with a black permanent marker.",
            "error": 0,
            "unique": "true"
    }
     ]
}
      

Mga Madalas Itanong (FAQs)

Ang API ng Plagiarismo ay nagbibigay-daan sa mga developer na isama ang pagtukoy ng plagiarism sa kanilang mga application, website, at content management system.
Hindi! Upang matugunan ang mga pangangailangan ng iba't ibang user, nag-aalok kami ng iba't ibang mga plano sa pagpepresyo para sa aming plagiarism API.
Oo! Sinusuportahan ng aming ibinigay na API ng Plagiarismo ang maraming wika.
Ang Plagiarism API ay kumukuha ng text input, pinoproseso ito sa pamamagitan ng pagsuri laban sa mga online na database at nagbabalik ng detalyadong ulat sa anumang katugmang nilalaman na natagpuan.
Sinusuportahan ng aming API ang maraming format ng file tulad ng, text (.txt), .docx, .pdf, at .html. Tingnan ang dokumentasyon ng API para sa mga detalye sa mga sinusuportahang format.
Nagbibigay kami ng malinaw na dokumentasyon ng API na may kasamang halimbawang code para sa integrasyon. Depende sa lengguwahe ng programming na ginagamit mo sa iyong website (hal., cURL, Python, JavaScript), maaari mong idagdag ang API key upang magpadala ng mga kahilingan sa server at suriin ang tugon.
Close Popup