
>95.7% Accuracy
Get Started
Introduction
Welcome to the documentation for JustExtract.it, Nex AI's latest API suite powered by our Extract It v2.0 algorithm.

Overview
JustExtract.it is a powerful API service designed to seamlessly extract structured data from your documents, primarily PDFs and images, and transform it into usable JSON format. It simplifies the complexities of document processing, allowing developers to integrate advanced data extraction capabilities into their applications with minimal effort.
Our extraction technology leverages a sophisticated hybrid Vision Language Model (VLM) approach. This ensures high accuracy in interpreting not just text, but also the layout and context of information within documents, significantly surpassing traditional OCR methods. We continuously test and fine-tune our models to deliver premier performance across various document types and industries, including manufacturing, logistics, finance, and more.
With JustExtract.it, you can stop worrying about the intricacies of data extraction and focus on building features that matter to your users.
Setting up
To get started with JustExtract.it, you'll need an API key. You can explore our capabilities in the playground or schedule an onboarding call with our team for a personalized setup and to discuss your specific needs.
Explore Playground
Get familiar with the API and experience insanely great extraction without writing any code.
Go to PlaygroundOnboarding Call
Schedule a 1-to-1 demo call to discuss your use case and get a personalized onboarding session.
Book a CallExample API Usage
Here's a quick example of how to use the API to submit a document for extraction. This example uses a simple filter to guide the extraction process.
1curl -X POST https://api.justextract.it/api/extract \
2-H "Authorization: Bearer YOUR_API_KEY" \
3-H "Content-Type: application/json" \
4-d '{
5 "url": "YOUR_DOCUMENT_GET_URL_OR_PUBLIC_URL",
6 "filters": [
7 {
8 "pages": [1, 2],
9 "include": true
10 },
11 {
12 "query": "Find summary sections",
13 "include": true
14 }
15 // ... other filter objects
16 ]
17}'