Try Our API
Experience the power of our financial planning and accounting specific API endpoints, made for more intuitive workflow.
Test PDF Redaction
Code Example
# Via your website API
fetch('/api/redact-pdf', {
method: 'POST',
headers: { 'Content-Type': 'application/json' },
body: JSON.stringify({
"file_url": "{file_url}",
"instructions": "{instructions}"
})
})
# Direct API call (requires API token)
curl -X POST "https://api.rubica.au/test/redact" \
-H "API-Token: YOUR_API_TOKEN" \
-H "Content-Type: application/json" \
-d '{
"file_url": "{file_url}",
"instructions": "{instructions}"
}'Response
Enter a PDF URL and redaction instructions to test the API