Developer Documentation
Everything you need to integrate LoanDocs.ai into your applications. APIs, SDKs, guides, and examples.
Quick Start Guide
Get started with LoanDocs.ai API in 4 simple steps
Sign up and get your API key from the dashboard
curl -X GET 'https://api.loandocs.ai/auth/me' \
-H 'Authorization: Bearer YOUR_API_KEY'Upload your document to our secure servers
curl -X POST 'https://api.loandocs.ai/upload' \
-H 'Authorization: Bearer YOUR_API_KEY' \
-F 'file=@document.pdf'Convert your document to the desired format
curl -X POST 'https://api.loandocs.ai/convert' \
-H 'Authorization: Bearer YOUR_API_KEY' \
-d '{ "fileId": "file_123", "format": "docx" }'Get your converted document
curl -X GET 'https://api.loandocs.ai/download/file_123' \
-H 'Authorization: Bearer YOUR_API_KEY' \
-o converted.docxDocumentation Sections
Comprehensive guides and references for all features
Complete REST API documentation with examples
Official libraries for popular languages
Supported input and output formats
Step-by-step integration tutorials
Security features and compliance information
Professional and enterprise capabilities
Code Examples
Ready-to-use code snippets in popular languages
const LoanDocs = require('@loandocs/js-sdk');
const client = new LoanDocs('your-api-key');
async function convertDocument() {
const upload = await client.upload('./document.pdf');
const conversion = await client.convert(upload.id, 'docx');
const result = await client.download(conversion.id);
return result;
}import loandocs
client = loandocs.Client('your-api-key')
def convert_document():
upload = client.upload('./document.pdf')
conversion = client.convert(upload.id, 'docx')
result = client.download(conversion.id)
return result<?php
use LoanDocs\Client;
$client = new Client('your-api-key');
function convertDocument() {
$upload = $client->upload('./document.pdf');
$conversion = $client->convert($upload->id, 'docx');
$result = $client->download($conversion->id);
return $result;
}# Upload document
curl -X POST 'https://api.loandocs.ai/upload' \
-H 'Authorization: Bearer YOUR_API_KEY' \
-F 'file=@document.pdf'
# Convert document
curl -X POST 'https://api.loandocs.ai/convert' \
-H 'Authorization: Bearer YOUR_API_KEY' \
-d '{"fileId": "file_123", "format": "docx"}'Additional Resources
More tools and resources to help you succeed
Need help with integration?
Our developer support team is here to help you integrate LoanDocs.ai successfully.
