Appearance
Quick Start
Make your first anonymization request in under two minutes.
Prerequisites
- An evaluation API token for the hosted demo (see below)
Using the Hosted Demo
1. Get an API Token
Send a request to techsupport@questa.solutions with your name, organisation, and use case. Evaluation tokens are issued for development and proof-of-concept.
2. Make a Request
bash
curl -X POST https://demo.questa-ai.online/anonymize/text \
-H "Content-Type: application/json" \
-H "Authorization: Bearer YOUR_API_TOKEN" \
-d '{
"text": "My name is John Doe and I live in New York."
}'Response:
json
{
"anonymized_text": "My name is [PERSON_NAME_1] and I live in [ADDRESS_2].",
"map": {
"John Doe": "[PERSON_NAME_1]",
"New York": "[ADDRESS_2]"
},
"entities": 2
}Note: The hosted demo is for evaluation and proof-of-concept only — each token is capped at 1,000 requests and 30 requests/minute (see Authentication). For production use within your organisation, contact
techsupport@questa.solutionsfor a self-hosted commercial license — see Self-Hosting.
Next Steps
- Authentication — evaluation keys and how production auth works
- Python integration — using the API from Python
- JavaScript integration — using the API from Node.js
- API Reference — complete endpoint documentation
- Self-Hosting — the production deployment path