### Copyleaks Documentation Navigation Source: https://docs.copyleaks.com/docs/copyleaks-documentation/getting-started/index Provides links to key sections of the Copyleaks documentation, including 'Get Started' and 'Overview'. ```text [Skip to content](https://docs.copyleaks.com/docs/copyleaks-documentation/getting-started#_top) [ Copyleaks Documentation ](https://docs.copyleaks.com/) Search ` `Ctrl``K` ` Cancel Clear [GitHub](https://github.com/copyleaks)[Stack Overflow](https://stackoverflow.com/questions/tagged/copyleaks-api) Toggle theme [ **Dashboard** ](https://api.copyleaks.com/dashboard) * Get Started * [ Overview ](https://docs.copyleaks.com/get-started/overview/) ``` -------------------------------- ### Copyleaks JavaScript SDK Source: https://docs.copyleaks.com/docs/copyleaks-documentation/getting-started/index This snippet shows how to integrate Copyleaks functionality into a JavaScript application using the official SDK. It includes initialization and an example of initiating a scan. ```JavaScript const { Copyleaks } = require('copyleaks-cloud'); // Initialize the Copyleaks client with your API token const apiToken = 'YOUR_API_TOKEN'; const copyleaks = new Copyleaks(apiToken); // Example: Perform an AI detection scan const textToScan = 'This is a sample text to check for AI detection.'; copyleaks.aiDetection(textToScan) .then(result => { console.log(result); }) .catch(error => { console.error('Error performing AI detection:', error); }); // Example: Submit a document for plagiarism check // const filePath = 'path/to/your/document.pdf'; // copyleaks.submitFile(filePath) // .then(result => { // console.log(result); // }) // .catch(error => { // console.error('Error submitting file:', error); // }); ``` -------------------------------- ### Copyleaks C# SDK Source: https://docs.copyleaks.com/docs/copyleaks-documentation/getting-started/index This snippet demonstrates how to use the Copyleaks C# SDK to integrate content analysis capabilities into .NET applications. It includes client setup and an example of an AI detection scan. ```C# using Copyleaks.SDK; public class CopyleaksExample { public static void Main(string[] args) { // Initialize the Copyleaks client with your API token string apiToken = "YOUR_API_TOKEN"; Copyleaks copyleaks = new Copyleaks(apiToken); // Example: Perform an AI detection scan string textToScan = "This is a sample text to check for AI detection."; var scanResult = copyleaks.AiDetection(textToScan); Console.WriteLine(scanResult); // Example: Submit a document for plagiarism check // string filePath = "path/to/your/document.pdf"; // var scanResultPlagiarism = copyleaks.SubmitFile(filePath); // Console.WriteLine(scanResultPlagiarism); } } ``` -------------------------------- ### Copyleaks Ruby SDK Source: https://docs.copyleaks.com/docs/copyleaks-documentation/getting-started/index This snippet demonstrates how to use the Copyleaks Ruby SDK to integrate content analysis features into Ruby applications. It includes client initialization and an example of an AI detection scan. ```Ruby require 'copyleaks-ruby' # Initialize the Copyleaks client with your API token api_token = "YOUR_API_TOKEN" copyleaks = Copyleaks::Client.new(api_token) # Example: Perform an AI detection scan text_to_scan = "This is a sample text to check for AI detection." scan_result = copyleaks.ai_detection(text_to_scan) puts scan_result # Example: Submit a document for plagiarism check # file_path = "path/to/your/document.pdf" # scan_result_plagiarism = copyleaks.submit_file(file_path) # puts scan_result_plagiarism ``` -------------------------------- ### Copyleaks Java SDK Source: https://docs.copyleaks.com/docs/copyleaks-documentation/getting-started/index This snippet illustrates the usage of the Copyleaks Java SDK for integrating content analysis features into Java applications. It covers client initialization and a basic scan example. ```Java import com.copyleaks.sdk.Copyleaks; public class CopyleaksExample { public static void main(String[] args) { // Initialize the Copyleaks client with your API token String apiToken = "YOUR_API_TOKEN"; Copyleaks copyleaks = new Copyleaks(apiToken); // Example: Perform an AI detection scan String textToScan = "This is a sample text to check for AI detection."; try { String scanResult = copyleaks.aiDetection(textToScan); System.out.println(scanResult); } catch (Exception e) { e.printStackTrace(); } // Example: Submit a document for plagiarism check // String filePath = "path/to/your/document.pdf"; // try { // String scanResultPlagiarism = copyleaks.submitFile(filePath); // System.out.println(scanResultPlagiarism); // } catch (Exception e) { // e.printStackTrace(); // } } } ``` -------------------------------- ### Copyleaks API - Assess Grammar and Writing Quality Source: https://docs.copyleaks.com/docs/copyleaks-documentation/getting-started/index Get writing and grammar suggestions via API. Authenticate, submit text, and access full details. ```APIDOC Copyleaks API: Assess Grammar and Writing Quality: Endpoint: /v1/writing/quality Method: POST Description: Analyzes text for grammar, spelling, and writing quality. Parameters: - text (string, required): The text content to analyze. Returns: - grammarScore (number): Score for grammar correctness. - clarityScore (number): Score for text clarity. - suggestions (array): List of suggested improvements. Example: POST /v1/writing/quality { "text": "This text has some gramar mistakes." } ``` -------------------------------- ### Copyleaks PHP SDK Source: https://docs.copyleaks.com/docs/copyleaks-documentation/getting-started/index This snippet provides an example of using the Copyleaks PHP SDK to incorporate content analysis features into PHP projects. It covers client initialization and a basic AI detection scan. ```PHP aiDetection($textToScan); print_r($scanResult); // Example: Submit a document for plagiarism check // $filePath = "path/to/your/document.pdf"; // $scanResultPlagiarism = $copyleaks->submitFile($filePath); // print_r($scanResultPlagiarism); ?> ``` -------------------------------- ### Copyleaks API - Install Open Source Report Source: https://docs.copyleaks.com/docs/copyleaks-documentation/getting-started/index Integrate Copyleaks' web report module into your application to display plagiarism detection, AI content detection, and writing assistance reports. ```APIDOC Copyleaks API: Install Open Source Report: Description: Instructions for integrating the open-source web report module. Note: This typically involves client-side integration using provided JavaScript libraries or components. ``` -------------------------------- ### Copyleaks API Reference Source: https://docs.copyleaks.com/docs/copyleaks-documentation/getting-started/index This section provides detailed API documentation for various Copyleaks functionalities, including AI detection, plagiarism results, moderation, and writing assistance. It outlines the structure of requests and responses, parameters, and usage examples. ```APIDOC AI Detection: GET /v1/ai-detection - Retrieves AI detection results. - Parameters: - text: The text to analyze (string). - options: Optional parameters for AI detection (object). - Returns: AI detection analysis results (object). AI Overview: GET /v1/ai-overview - Provides an overview of AI detection capabilities. - Returns: General AI detection information (object). New Plagiarism Result: GET /v1/plagiarism/results/new - Retrieves information about a new plagiarism result. - Parameters: - scanId: The ID of the scan (string). - Returns: Details of the new plagiarism result (object). New Result: GET /v1/results/new - Retrieves a new result from a scan. - Parameters: - scanId: The ID of the scan (string). - Returns: The new scan result (object). Crawled Version: GET /v1/results/crawled-version - Retrieves the crawled version of a document. - Parameters: - scanId: The ID of the scan (string). - Returns: The crawled version of the document (object). Private Cloud Hub - Masking Policy: GET /v1/private-cloud/masking-policy - Manages masking policies for the private cloud. - Returns: Masking policy details (object). Private Cloud Hub - Roles: GET /v1/private-cloud/roles - Manages roles within the private cloud. - Returns: Role information (object). Private Cloud Hub - Status: GET /v1/private-cloud/status - Retrieves the status of the private cloud. - Returns: Private cloud status information (object). AI Detector - Overview: GET /v1/ai-detector/overview - Provides an overview of the AI detector. - Returns: AI detector overview (object). AI Detector - AI Detection Response: GET /v1/ai-detector/ai-detector - Returns the response from the AI detector. - Parameters: - scanId: The ID of the scan (string). - Returns: AI detector response data (object). Writing - Overview: GET /v1/writing/overview - Provides an overview of writing assistance features. - Returns: Writing assistance overview (object). Writing - Writing Assistant Response: GET /v1/writing/writing-assistant - Retrieves the response from the writing assistant. - Parameters: - scanId: The ID of the scan (string). - Returns: Writing assistant response data (object). Writing - Correction Types: GET /v1/writing/correction-types - Lists available correction types for writing assistance. - Returns: List of correction types (array of strings). Moderation - Overview: GET /v1/moderation/overview - Provides an overview of moderation features. - Returns: Moderation overview (object). Moderation - Text Moderation Labels: GET /v1/moderation/text-moderation-labels - Retrieves labels for text moderation. - Parameters: - text: The text to moderate (string). - Returns: Moderation labels for the text (object). Concepts - Use Cases - Academic Integrity: GET /v1/concepts/use-cases/academic-integrity - Information on using Copyleaks for academic integrity. - Returns: Academic integrity use case details (object). Concepts - Use Cases - Content Integrity for Publishers: GET /v1/concepts/use-cases/publishers - Information on using Copyleaks for content integrity in publishing. - Returns: Publisher use case details (object). Concepts - Use Cases - User-Generated Content Platforms: GET /v1/concepts/use-cases/user-generated-content-platforms - Information on using Copyleaks for UGC platforms. - Returns: UGC platform use case details (object). Concepts - Features - AI Logic: GET /v1/concepts/features/ai-logic - Explanation of Copyleaks' AI logic. - Returns: AI logic details (object). Concepts - Features - GenAI Scan Overview: GET /v1/concepts/features/gen-ai-scan-overview - Overview of GenAI scanning capabilities. - Returns: GenAI scan overview (object). Concepts - Features - Ways to Display Reports: GET /v1/concepts/features/how-to-display - Information on displaying Copyleaks reports. - Returns: Report display options (object). Concepts - Features - Export PDF Report: GET /v1/concepts/features/export-pdf-report - Instructions for exporting reports as PDF. - Returns: PDF export details (object). Concepts - Features - Exclude Content: GET /v1/concepts/features/exclude-content - Information on excluding content from scans. - Returns: Content exclusion details (object). Concepts - Features - Detecting Text Manipulation: GET /v1/concepts/features/text-manipulation - Details on detecting text manipulation. - Returns: Text manipulation detection information (object). Concepts - Features - Identical Matches Detection: GET /v1/concepts/features/identical-matches - Information on detecting identical matches. - Returns: Identical matches detection details (object). Concepts - Features - Data Hubs: GET /v1/concepts/features/data-hubs - Information about Copyleaks Data Hubs. - Returns: Data Hubs information (object). Concepts - Features - Prevent Self-Plagiarism: GET /v1/concepts/features/self-plagiarism - Information on preventing self-plagiarism. - Returns: Self-plagiarism prevention details (object). Concepts - Management - Manage Your Credits: GET /v1/concepts/management/manage-your-credits - Instructions for managing Copyleaks credits. - Returns: Credit management details (object). Concepts - Management - Choosing Your Scan ID: GET /v1/concepts/management/choosing-scan-id - Guidance on selecting Scan IDs. - Returns: Scan ID selection information (object). Concepts - Performance - Best Practices: GET /v1/concepts/performance/best-practices - Best practices for using Copyleaks. - Returns: Performance best practices (object). Concepts - Performance - Handling Failures: GET /v1/concepts/performance/handling-failures - Strategies for handling failures in Copyleaks scans. - Returns: Failure handling information (object). Concepts - Trust & Security - Overview: GET /v1/concepts/security/overview - Overview of Copyleaks trust and security measures. - Returns: Security overview (object). Concepts - Trust & Security - Webhooks: GET /v1/concepts/security/webhooks - Information on configuring and using webhooks. - Returns: Webhook details (object). Resources - Run in Postman: GET /v1/resources/postman - Information on running Copyleaks API calls in Postman. - Returns: Postman integration details (object). Resources - Working with LLMs: GET /v1/resources/llms - Guidance on working with Large Language Models (LLMs) with Copyleaks. - Returns: LLM integration information (object). Resources - Official SDKs - Overview: GET /v1/resources/sdks/overview - Overview of available Copyleaks SDKs. - Returns: SDK overview (object). Resources - Official SDKs - Python: GET /v1/resources/sdks/python - Information and usage for the Python SDK. - Returns: Python SDK details (object). Resources - Official SDKs - JavaScript: GET /v1/resources/sdks/javascript - Information and usage for the JavaScript SDK. - Returns: JavaScript SDK details (object). Resources - Official SDKs - Java: GET /v1/resources/sdks/java - Information and usage for the Java SDK. - Returns: Java SDK details (object). Resources - Official SDKs - C#: GET /v1/resources/sdks/csharp - Information and usage for the C# SDK. - Returns: C# SDK details (object). Resources - Official SDKs - PHP: GET /v1/resources/sdks/php - Information and usage for the PHP SDK. - Returns: PHP SDK details (object). Resources - Official SDKs - Ruby: GET /v1/resources/sdks/ruby - Information and usage for the Ruby SDK. - Returns: Ruby SDK details (object). Resources - Updates & Support - Release Notes: GET /v1/resources/updates/release-notes - Access to Copyleaks release notes. - Returns: Release notes information (object). Resources - Updates & Support - System Status: GET https://status.copyleaks.com/ - Link to the Copyleaks system status page. Resources - Updates & Support - Contact Support: GET https://help.copyleaks.com/hc/en-us/requests/new - Link to the Copyleaks support contact form. Resources - Updates & Support - Book a Demo: GET https://copyleaks.com/book-a-demo - Link to book a demo with Copyleaks. Resources - Legal & Pricing - Pricing: GET https://copyleaks.com/pricing - Link to Copyleaks pricing information. Resources - Legal & Pricing - Terms of Use: GET https://copyleaks.com/termsofuse - Link to Copyleaks Terms of Use. Resources - Legal & Pricing - Privacy Policy: GET https://copyleaks.com/privacy-policy - Link to Copyleaks Privacy Policy. Resources - Legal & Pricing - Manage Cookies: GET https://copyleaks.com/?consentMode - Link to manage cookie preferences on Copyleaks. ``` -------------------------------- ### Copyleaks API - Detect AI-Generated Content Source: https://docs.copyleaks.com/docs/copyleaks-documentation/getting-started/index Detect AI-generated text via synchronous or asynchronous API calls. This guide covers synchronous detection. ```APIDOC Copyleaks API: Detect AI-Generated Content (Sync): Endpoint: /v1/detect/ai/text Method: POST Description: Synchronously detects AI-generated content in the provided text. Parameters: - text (string, required): The text content to analyze. Returns: - aiScore (number): A score indicating the likelihood of AI generation. - result (string): Classification of the text (e.g., 'human', 'ai'). Example: POST /v1/detect/ai/text { "text": "This text was generated by an AI." } ``` -------------------------------- ### Copyleaks Python SDK Source: https://docs.copyleaks.com/docs/copyleaks-documentation/getting-started/index This snippet demonstrates how to use the Copyleaks Python SDK to perform various content analysis tasks. It covers initialization and basic usage patterns. ```Python from copyleaks import Copyleaks # Initialize the Copyleaks client with your API token api_token = "YOUR_API_TOKEN" copyleaks = Copyleaks(api_token) # Example: Perform an AI detection scan text_to_scan = "This is a sample text to check for AI detection." scan_result = copyleaks.ai_detection(text_to_scan) print(scan_result) # Example: Submit a document for plagiarism check # file_path = "path/to/your/document.pdf" # scan_result_plagiarism = copyleaks.submit_file(file_path) # print(scan_result_plagiarism) ``` -------------------------------- ### Copyleaks API Reference - Writing Assistant Source: https://docs.copyleaks.com/docs/copyleaks-documentation/getting-started/index This section details the API endpoints for the Writing Assistant, which helps users improve grammar and writing quality by submitting text and retrieving correction suggestions. ```APIDOC Copyleaks API - Writing Assistant: Submit Text: POST /v1/writing-assistant/check Submits text for grammar and writing quality assessment. Parameters: text: The text to analyze (string) language: The language of the text (string) Returns: Correction suggestions (object) Get Correction Types: GET /v1/writing-assistant/correction-types Retrieves a list of available correction types. Returns: Array of correction types (array of strings) ``` -------------------------------- ### Copyleaks API Reference - AI Detector Source: https://docs.copyleaks.com/docs/copyleaks-documentation/getting-started/index This section covers the API endpoints for the AI Detector feature, allowing users to detect AI-generated content in natural language text and source code. ```APIDOC Copyleaks API - AI Detector: Detect Natural Language: POST /v1/ai-detector/check Detects AI-generated content in natural language text. Parameters: text: The text to analyze (string) model: Optional AI model to use (string) Returns: Analysis results (object) Detect Source Code: POST /v1/ai-detector/check-source-code Detects AI-generated content in source code. Parameters: code: The source code to analyze (string) language: The programming language of the source code (string) model: Optional AI model to use (string) Returns: Analysis results (object) ``` -------------------------------- ### Copyleaks API Reference - Account Management Source: https://docs.copyleaks.com/docs/copyleaks-documentation/getting-started/index This section provides information on API endpoints related to account management, specifically for logging in and retrieving account-related information. ```APIDOC Copyleaks API - Account Management: Login: POST /v1/account/login Authenticates a user and returns an access token. Parameters: email: User's email address (string) password: User's password (string) Returns: Access token (string) ``` -------------------------------- ### Accessibility Features Source: https://docs.copyleaks.com/docs/copyleaks-documentation/getting-started/index Information on website accessibility features, including keyboard shortcuts for users with visual disabilities and screen readers. ```text Please note: This website includes an accessibility system. Press Control-F11 to adjust the website to people with visual disabilities who are using a screen reader; Press Control-F10 to open an accessibility menu. Popup heading Close Accessibility * Press enter for Accessibility for blind people who use screen readers * Press enter for Keyboard Navigation * Press enter for Accessibility menu ``` -------------------------------- ### Copyleaks API - Detect Plagiarism in Text Source: https://docs.copyleaks.com/docs/copyleaks-documentation/getting-started/index Analyze plagiarism, AI-generated text, and writing quality via API. Supports asynchronous calls with webhooks and data masking. ```APIDOC Copyleaks API: Detect Plagiarism in Text: Endpoint: /v1/scan/text Method: POST Description: Analyzes text for plagiarism, AI-generated content, and writing quality. Parameters: - text (string, required): The text content to analyze. - webhook (string, optional): URL for receiving asynchronous results. - dataMasking (boolean, optional): Enable data masking for privacy. Returns: - scanId (string): Unique identifier for the scan. - status (string): Status of the scan (e.g., 'processing', 'completed'). Example: POST /v1/scan/text { "text": "This is a sample text to scan.", "webhook": "https://example.com/webhook" } ``` -------------------------------- ### Copyleaks API Reference - Authenticity Scans Source: https://docs.copyleaks.com/docs/copyleaks-documentation/getting-started/index This section details the API endpoints for managing authenticity scans, including submitting content, checking credits, and managing scan results. It covers submitting URLs, files, and OCR data, as well as retrieving usage history and exporting data. ```APIDOC Copyleaks API - Authenticity Scans: Submit URL: POST /v1/scans/submit/url Submit a URL for plagiarism detection. Parameters: url: The URL to scan (string) filters: Optional scan filters (object) webhook: Optional webhook URL (string) Returns: Scan ID (string) Submit File: POST /v1/scans/submit/file Submit a file for plagiarism detection. Parameters: file: The file to scan (file) filters: Optional scan filters (object) webhook: Optional webhook URL (string) Returns: Scan ID (string) Submit OCR: POST /v1/scans/submit/ocr Submit an image file for OCR and plagiarism detection. Parameters: file: The image file to process (file) language: The language of the text in the image (string) filters: Optional scan filters (object) webhook: Optional webhook URL (string) Returns: Scan ID (string) Start Scans: POST /v1/scans/start Initiates previously submitted scans. Parameters: scanIds: Array of scan IDs to start (array of strings) Returns: Status message (string) Delete Scans: DELETE /v1/scans/{scanId} Deletes a specific scan. Parameters: scanId: The ID of the scan to delete (string) Returns: Status message (string) Resend Webhook: POST /v1/scans/{scanId}/resend-webhook Resends the webhook notification for a completed scan. Parameters: scanId: The ID of the scan (string) Returns: Status message (string) Get Credit Balance: GET /v1/credits/balance Retrieves the current credit balance. Returns: Credit balance (number) Usage History: GET /v1/credits/history Retrieves the usage history for credits. Parameters: startDate: Start date for history (string, YYYY-MM-DD) endDate: End date for history (string, YYYY-MM-DD) Returns: Array of usage records (array of objects) Export: POST /v1/export Initiates an export of scan results. Parameters: scanIds: Array of scan IDs to export (array of strings) format: Export format (e.g., 'csv', 'json') (string) webhook: Optional webhook URL for completion notification (string) Returns: Export ID (string) Get Private Cloud Hub Information: GET /v1/private-cloud-hub/info Retrieves information about the Private Cloud Hub configuration. Returns: Hub information (object) Supported File Types: GET /v1/miscellaneous/supported-file-types Lists all supported file types for scanning. Returns: Array of supported file types (array of strings) OCR Supported Languages: GET /v1/miscellaneous/ocr-supported-languages Lists all languages supported for OCR. Returns: Array of supported languages (array of strings) Supported Cross-Languages: GET /v1/miscellaneous/supported-cross-languages Lists all languages supported for cross-language detection. Returns: Array of supported languages (array of strings) ``` -------------------------------- ### Copyleaks API - Moderate Text Source: https://docs.copyleaks.com/docs/copyleaks-documentation/getting-started/index Scan and moderate text content for unsafe or policy-relevant material across multiple categories. ```APIDOC Copyleaks API: Moderate Text: Endpoint: /v1/moderate/text Method: POST Description: Scans text for policy violations across categories like hate speech, profanity, etc. Parameters: - text (string, required): The text content to moderate. - categories (array of strings, optional): Specific categories to check. Returns: - moderationResults (object): Details of detected violations per category. Example: POST /v1/moderate/text { "text": "This is inappropriate content.", "categories": ["hate_speech", "profanity"] } ``` -------------------------------- ### Copyleaks API Reference - Text Moderation Source: https://docs.copyleaks.com/docs/copyleaks-documentation/getting-started/index This section outlines the API endpoints for the Text Moderation feature, enabling users to moderate text for various content policies. ```APIDOC Copyleaks API - Text Moderation: Moderate Text: POST /v1/text-moderation/check Moderates text for harmful or inappropriate content. Parameters: text: The text to moderate (string) categories: Optional categories to check for (array of strings) Returns: Moderation results (object) ``` -------------------------------- ### Copyleaks API Reference - Data Types Source: https://docs.copyleaks.com/docs/copyleaks-documentation/getting-started/index This section details the various data types used within the Copyleaks API, including structures for scan results, alerts, and webhook payloads. ```APIDOC Copyleaks API - Data Types: Authenticity - Technical Specifications: Provides detailed technical specifications for scan results. Authenticity - Scan Alerts: Defines the structure for scan alerts, including alert types and severity. Authenticity - Scanned Document: Represents a document that has been scanned, including its metadata and results. Authenticity - Result Tags: Defines the structure for tags associated with scan results, used for categorization and filtering. Authenticity - Webhooks - Scan Completed: Payload structure for the 'scan-completed' webhook event. Authenticity - Webhooks - Credits Checked: Payload structure for the 'credits-checked' webhook event. Authenticity - Webhooks - Error: Payload structure for the 'error' webhook event. Authenticity - Webhooks - Indexed: Payload structure for the 'indexed' webhook event. Authenticity - Webhooks - Export Completed: Payload structure for the 'export-completed' webhook event. ``` -------------------------------- ### Copyleaks Cookie Details Source: https://docs.copyleaks.com/docs/copyleaks-documentation/getting-started/index Provides a comprehensive list of cookies used by Copyleaks, categorized into Necessary, Functional, and Analytics. Each cookie entry includes its name, duration, and a description of its purpose. ```APIDOC Cookie Details: Necessary Cookies: - cl_uaid: - Duration: 5 hours 15 minutes - Description: A unique identifier used to identify anonymous users. - m: - Duration: 1 year 1 month 4 days - Description: For fraud detection. Helps Stripe assess the risk associated with an attempted transaction on the your website. - elementor: - Duration: Never Expires - Description: This cookie is used by the website's WordPress theme. It allows the website owner to implement or change the website's content in real-time. - __stripe_mid: - Duration: 1 year - Description: Stripe sets this cookie cookie to process payments. - __stripe_sid: - Duration: 1 hour - Description: Stripe sets this cookie cookie to process payments. - language: - Duration: 3 months 16 days - Description: This cookie is used to store the language preference of the user. - aia: - Duration: 30 days - Description: A membership system that enables you to add login functionality to your application, allowing visitors to create an account and login with a user name and password from Facebook, Google or other external login providers. - cookieyes-consent: - Duration: 1 year - Description: CookieYes sets this cookie to remember users' consent preferences so that their preferences are respected on subsequent visits to this site. It does not collect or store any personal information about the site visitors. - AwinChannelCookie: - Duration: 1 month - Description: Description is currently not available. - GCLB: - Duration: session - Description: This cookie is known as Google Cloud Load Balancer set by the provider Google. This cookie is used for external HTTPS load balancing of the cloud infrastructure with Google. - sra: - Duration: session - Description: Description is currently not available. - __cf_bm: - Duration: 1 hour - Description: This cookie, set by Cloudflare, is used to support Cloudflare Bot Management. - CookieConsentPolicy: - Duration: 1 year - Description: Description is currently not available. - LSKey-c$CookieConsentPolicy: - Duration: 1 year - Description: Description is currently not available. Functional Cookies: - session: - Duration: session - Description: No description available. - BrowserId: - Duration: 1 year - Description: Sale Force sets this cookie to log browser sessions and visits for internal-only product analytics. - undefinedtVrmelmPAQa8qLt6Otqfvz: - Duration: session - Description: Description is currently not available. - _tldtest_4FlA5W4DmKSSHfAXRGizhc: - Duration: session - Description: Description is currently not available. Analytical Cookies: - _vwo_uuid_v2: - Duration: 1 year - Description: This cookie is set by Visual Website Optimiser and calculates unique traffic on a website. - _ga: - Duration: 2 hours - Description: The _ga cookie, installed by Google Analytics, calculates visitor, session and campaign data and also keeps track of site usage for the site's analytics report. The cookie stores information anonymously and assigns a randomly generated number to recognize unique visitors. - _gcl_au: - Duration: 2 hours - Description: Provided by Google Tag Manager to experiment advertisement efficiency of websites using their services. - vuid: - Duration: 1 year 1 month 4 days - Description: Vimeo installs this cookie to collect tracking information by setting a unique ID to embed videos to the website. - CLID: - Duration: 1 year - Description: ``` -------------------------------- ### Copyleaks API - Embed Hosted Web Report Source: https://docs.copyleaks.com/docs/copyleaks-documentation/getting-started/index Provides a seamless way to display detailed plagiarism and AI detection reports within your application. ```APIDOC Copyleaks API: Embed Hosted Web Report: Endpoint: /v1/report/{scanId}/embed Method: GET Description: Generates an embeddable URL for a specific scan report. Parameters: - scanId (string, required): The ID of the completed scan. Returns: - embedUrl (string): The URL to embed the report. Example: GET /v1/report/your-scan-id/embed ``` -------------------------------- ### Cookie Information Source: https://docs.copyleaks.com/docs/copyleaks-documentation/getting-started/index Details about various cookies used on the website, including their purpose, duration, and the services they are associated with (e.g., Google Analytics, Microsoft Clarity, Bing, Optimizely, ZoomInfo, Calendly, Salesforce, Mixpanel, DoubleClick). ```text * Cookie _ga_* * Duration 2 hours * Description Google Analytics sets this cookie to store and count page views. * Cookie _clck * Duration 1 year * Description Microsoft Clarity sets this cookie to retain the browser's Clarity User ID and settings exclusive to that website. This guarantees that actions taken during subsequent visits to the same website will be linked to the same user ID. * Cookie _clsk * Duration 1 day * Description Microsoft Clarity sets this cookie to store and consolidate a user's pageviews into a single session recording. * Cookie SM * Duration session * Description Microsoft Clarity cookie set this cookie for synchronizing the MUID across Microsoft domains. * Cookie MR * Duration 7 days * Description This cookie, set by Bing, is used to collect user information for analytics purposes. * Cookie _optimizely_user * Duration 1 year * Description Use for analytics by optimizely * Cookie visitorId * Duration 1 year * Description ZoomInfo sets this cookie to identify a user. * Cookie amp_e9074a * Duration 1 year 1 month 4 days * Description Google AMP * Cookie lantern * Duration 1 month * Description No description available. * Cookie Copy_Leaks_lantern * Duration 6 months * Description Description is currently not available. * Cookie _cfuvid * Duration session * Description Calendly sets this cookie to track users across sessions to optimize user experience by maintaining session consistency and providing personalized services * Cookie renderCtx * Duration session * Description Track the Remember Me checkbox that the user selected to enable login hint. salesforce * Cookie pctrk * Duration 1 year * Description tracking by salesforce * Cookie WMF-Uniq * Duration 1 year * Description Description is currently not available. * Cookie mp_*_mixpanel * Duration 1 year * Description Mixpanel sets this cookie to determine how users use the website so that a good user experience can be provided. * Cookie test_cookie * Duration 15 minutes * Description The test_cookie is set by doubleclick.net and is used to determine if the user's browser supports cookies. * Cookie IDE * Duration 1 year 24 days * Description Google DoubleClick IDE cookies are used to store information about how the user uses the website to present them with relevant ads and according to the user profile. * Cookie MUID * Duration 1 year 24 days * Description Bing sets this cookie to recognise unique web browsers visiting Microsoft sites. This cookie is used for advertising, site analytics, and other operations. * Cookie ANONCHK * Duration 10 minutes * Description The ANONCHK cookie, set by Bing, is used to store a user's session ID and verify ads' clicks on the Bing search engine. The cookie helps in reporting and personalization as well. * Cookie SRM_B * Duration 1 year 24 days * Description Used by Microsoft Advertising as a unique ID for visitors. * Cookie __adroll_shared * Duration 395 days * Description Collects data on the user across websites – This data is used to make advertisements more relevant. ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.