Wakatipu API
Extraction APIs for documents, web pages, and text workflows.
Build with authenticated endpoints for file extraction, OCR, PDF tooling, web parsing, text intelligence, vectors, jobs, and retained outputs.
Send authenticated requests and receive structured JSON responses.
Quick Start
Use your API key with the X-API-Key header.
export WAKATIPU_API_KEY="your_key_here" curl -H "X-API-Key: $WAKATIPU_API_KEY" \ -F "file=@sample.pdf" \ https://wakatipu-api.appcloud.cyou/api/documents/extract-text
Try Text Clean
Paste text to preview a JSON endpoint before wiring a client.
Reference
Endpoint Categories
Use the categorized map for discovery, then open the docs for examples and request details.
Popular Endpoints
Common starting points for API integrations.
/api/documents/extract-text
Document text
Extract text from PDFs, office files, JSON, XML, markdown, and plain text.
curl -H "X-API-Key: $WAKATIPU_API_KEY" -F "file=@sample.pdf" https://wakatipu-api.appcloud.cyou/api/documents/extract-text
/api/pdf/extract-tables
PDF tables
Pull tabular data from PDF pages for review or downstream automation.
curl -H "X-API-Key: $WAKATIPU_API_KEY" -F "file=@report.pdf" https://wakatipu-api.appcloud.cyou/api/pdf/extract-tables
/api/ocr/image
Image OCR
Read text from screenshots, scans, and other uploaded images.
curl -H "X-API-Key: $WAKATIPU_API_KEY" -F "file=@scan.png" https://wakatipu-api.appcloud.cyou/api/ocr/image
/api/spreadsheets/read
Spreadsheet read
Preview rows from CSV and Excel-style files without opening a spreadsheet app.
curl -H "X-API-Key: $WAKATIPU_API_KEY" -F "file=@data.csv" -F "max_rows=25" https://wakatipu-api.appcloud.cyou/api/spreadsheets/read
/api/email/parse
Email parse
Extract subject, sender, body, headers, and attachment metadata from email files.
curl -H "X-API-Key: $WAKATIPU_API_KEY" -F "file=@message.eml" https://wakatipu-api.appcloud.cyou/api/email/parse
/api/archives/inspect
Archive inspect
Inventory archive contents and flag unsafe paths before extraction.
curl -H "X-API-Key: $WAKATIPU_API_KEY" -F "file=@bundle.zip" https://wakatipu-api.appcloud.cyou/api/archives/inspect
/api/web/extract-article
Article extraction
Extract readable article text from a public URL with private-network protections.
curl -H "X-API-Key: $WAKATIPU_API_KEY" -H "Content-Type: application/json" -d '{"url":"https://example.com/story"}' https://wakatipu-api.appcloud.cyou/api/web/extract-article
/api/text/clean
Text clean
Normalize whitespace, repair common encoding artifacts, and return clean text.
curl -H "X-API-Key: $WAKATIPU_API_KEY" -H "Content-Type: application/json" -d '{"text":"Messy text"}' https://wakatipu-api.appcloud.cyou/api/text/clean
/api/text/pii-redact
PII redact
Replace common email and phone patterns before sharing text downstream.
curl -H "X-API-Key: $WAKATIPU_API_KEY" -H "Content-Type: application/json" -d '{"text":"Email rahul@example.com"}' https://wakatipu-api.appcloud.cyou/api/text/pii-redact
/api/vectors/search
Vector search
Rank supplied text documents against a query using local fallback scoring.
curl -H "X-API-Key: $WAKATIPU_API_KEY" -H "Content-Type: application/json" -d '{"query":"invoice","documents":["invoice total","meeting notes"],"limit":1}' https://wakatipu-api.appcloud.cyou/api/vectors/search
Developer Resources
Endpoint map, API guide, request examples, pricing, and service status.