Classify, extract, summarize — via API. Get your key in 10 seconds.
Save this — you won't see it again.
Classify text:
curl -X POST https://adonissignature.com:8503/v1/classify \
-H "X-API-Key: " \
-H "Content-Type: application/json" \
-d '{"text": "Hello world", "categories": ["greeting", "spam"]}'
Extract data:
curl -X POST https://adonissignature.com:8503/v1/extract \
-H "X-API-Key: " \
-H "Content-Type: application/json" \
-d '{"text": "Contact Juan at juan@test.com", "fields": ["name", "email"]}'
Summarize:
curl -X POST https://adonissignature.com:8503/v1/summarize \
-H "X-API-Key: " \
-H "Content-Type: application/json" \
-d '{"text": "Long text here...", "max_length": 200}'