developer friendly
Easy-to-use API for your business data compliance
Integration
Our core API is designed from the ground up to deliver a seamless development experience across all platforms, without requiring deep AI knowledge.
Support
Our support team is dedicated to assist you throughout your proof of concept process and further advanced integrations.
Documentation
We provide sample projects, demos, API docs and more for every single feature in the iDox.ai API to get you up to speed quickly.
Security
We know your security concerns and we care even more. We are SOC2 certified and encrypt every single transfer to double secure your data.
Busniess success
Protect data privacy across industries
Effortlessly meet data compliance regulations with GDPR, CCPA, HIPAA, PCI-DSS, and more
<?php
$curl = curl_init();
curl_setopt_array($curl, array(
CURLOPT_URL => 'https://docs.idox.ai/api/v3/document-tool/pre-processing',
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => '',
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 0,
CURLOPT_FOLLOWLOCATION => true,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => 'POST',
CURLOPT_POSTFIELDS => array('file'=> new CURLFILE('/C:/Users/ai/sample/Segmentation/NDA.pdf')),
CURLOPT_HTTPHEADER => array(
'idox-api-engine-key: {api-key}'
),
));
$response = curl_exec($curl);
curl_close($curl);
echo $response;