Our API extracts and structures your data according to your needs, ready to be instantly integrated into your applications.
Everything you need to customize and automate your processing procedures quickly
Many document types are supported: PDF, Word, Excel, Text, Image or others
Customize the rules present in your YAML template to extract data according to your needs.
No data from your documents is stored. We respect GDPR compliance and data protection.
RESTful API with available SDKs. Integrate in just a few lines of code in your application.
Simple integration, powerful results. Just four steps to transform your data processing.
Simply create your extraction rules in a YAML file to extract data according to your needs.
Send any PDF or TXT file to our API endpoint via a simple POST request, along with your rules file.
Our system analyzes your file and automatically extracts the information you need, following your rules.
Get your data in JSON format, perfectly aligned with your YAML template.
// 1 & 2. Upload file and template
const formData = new FormData();
formData.append('file', fileInput.files[0]);
// 2. Content of the rules file
schemas:
data:
type: object
properties:
name:
type: string
description: name of the user
email:
type: string
description: email of the user
formData.append('template', fileTemplate));
// 3 & 4. Submit and get result
const response = await fetch(
'https://api.parsemyfile.com/api/v1/generate',
{
method: 'POST',
body: formData,
headers: {
'X-API-KEY': 'YOUR_API_KEY'
}
}
);
const result = await response.json();
// Result
{
"success": true,
"data":
{
"name": "John Smith",
"email": "john@example.com"
}
}
Choose the plan that fits your needs.
Perfect for getting started or small projects.
Custom solution for enterprises.
Yes, you can change your plan at any time. Changes take effect immediately.
You can either upgrade your plan to a higher offer or contact us to set up a custom plan.
Join us now to save time and boost your productivity!