Developer API

Code Plagiarism Detection API

Build plagiarism detection into your applications with our powerful REST API. Detect copied code across 20+ billion sources with industry-leading accuracy.

99.7%
Accuracy
51+
Languages
20B+
Sources
5
SDKs

API Playground

Not Connected

Connect your API key to test endpoints in real-time

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());
        }
    }
}