Partner websites using the PlagiTrack API can submit Drillbit & Turnitin orders. Every order appears in our agent panel for report generation.
Open API Dashboard →Sign in to User Portal → API → copy your key. Credits are deducted from your PlagiTrack wallet per submission.
<script src="https://plagitrack.com/assets/plagitrack-sdk.js"></script> <script> window.PLAGITRACK_API_KEY = 'pt_live_your_key_here'; window.PLAGITRACK_API_BASE = 'https://plagitrack.com/api/v1'; </script>
PlagiTrackAPI.submitOrder({
service: 'academic', // or 'advanced' for Turnitin
fileName: 'thesis.pdf',
fileSize: 204800,
wordCount: 4500,
notes: 'Client: John — Rush',
externalRef: 'YOUR-ORDER-123',
webhookUrl: 'https://yoursite.com/webhooks/plagitrack'
}).then(res => {
console.log('PlagiTrack order:', res.order.id);
}).catch(err => alert(err.message));Orders sync to Agent Portal and Admin Panel in real time. Agents upload similarity reports; your webhook receives report.ready when complete.
Share this page with your developer to connect your website to PlagiTrack. They can wire your upload form to our API in under 30 minutes.
Need help? WhatsApp +91 9088668763 · Open a ticket
| Method | URL | Description |
|---|---|---|
| POST | /api/v1/orders.php | Submit new document check |
| GET | /api/v1/orders-list.php | List your orders |
| GET | /api/v1/orders-list.php?id=ORD-… | Get single order status |
| GET | /api/v1/wallet.php | Check remaining credits |