With our API, extract and structure the data you need, ready to be 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.
Create your custom rules to extract data according to your needs while respecting the YAML format.
Send any PDF or TXT file to our API endpoint via a simple POST request with your rules file.
Our system analyzes the file and identifies the required information according to your rules to extract the data.
Receive the data in JSON format according to 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!