Developer API
Code Plagiarism
Detection API
Build plagiarism detection into your apps. Check code against 20+ billion sources.
const response = await fetch('https://codequiry.com/api/v1/check', {
method: 'POST',
headers: { 'apikey': 'YOUR_API_KEY' },
body: formData
});
// Check created!
Codequiry SDK for Java
The official Java SDK for Codequiry provides a robust, thread-safe interface for enterprise Java applications.
📦 Installation
Add the dependency to your project:
Maven
com.codequiry
codequiry-java
1.2.0
Gradle
implementation 'com.codequiry:codequiry-java:1.2.0'
🚀 Quick Start
Basic usage example:
import com.codequiry.Client;
import com.codequiry.models.*;
public class PlagiarismChecker {
public static void main(String[] args) {
// Initialize client
Client client = new Client.Builder()
.apiKey("your-api-key-here")
.build();
try {
// Test connection
AccountInfo account = client.getAccountInfo();
System.out.println("Connected as: " + account.getName());
} catch (Exception e) {
System.err.println("Error: " + e.getMessage());
}
}
}