Wakatipu API

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.

Developer API X-API-Key

Send authenticated requests and receive structured JSON responses.

Files Documents, PDFs, images, OCR, spreadsheets, email, archives, and media.
Intelligence Text cleanup, entities, keywords, classification, vectors, and workflows.
Operations Background jobs, output storage, health checks, and catalog endpoints.

Quick Start

Use your API key with the X-API-Key header.

Create account first
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.

Open API reference
Archives 6 endpoints Batch 1 endpoints Catalog 1 endpoints Documents 1 endpoints Email 6 endpoints Files 3 endpoints Images and OCR 14 endpoints Jobs 8 endpoints ML 5 endpoints Media 8 endpoints Office 9 endpoints Outputs 4 endpoints PDF 21 endpoints Spreadsheets 9 endpoints Text 16 endpoints Vectors 4 endpoints Web 21 endpoints Workflows 5 endpoints

Popular Endpoints

Common starting points for API integrations.

All endpoints
POST /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
POST /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
POST /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
POST /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
POST /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
POST /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
POST /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
POST /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
POST /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
POST /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.