← Strigs API

Fix Broken Excel Formulas by API

Send a malformed or failing Excel formula and receive a repaired formula plus a concise explanation of the correction. This can help spreadsheet import pipelines, formula editors, support tools, automated workbook QA, migration utilities, and applications that ingest formulas written by users or generated by other systems. The response keeps the corrected formula separate from explanation and validation metadata so a caller can compare the result, surface warnings, or require review before writing a change back into a workbook.

Built for application workflows

Strigs is designed for backend services, automation platforms, AI agents, spreadsheet import pipelines, and internal tools that need formula intelligence without embedding a spreadsheet user interface. Requests use a stable JSON contract and authenticated API key, while responses expose the formula together with explanation, validation status, warnings, function metadata, and confidence so your application can decide how much automation is appropriate.

API example

curl -X POST https://api.strigsapi.com/v1/formula/fix \
  -H "X-API-Key: $STRIGS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"platform":"excel","formula":"=SUM(A1:A10"}'

Responses include a formula, explanation, validation details, confidence, and compatibility warnings when applicable. Validation and confidence signals are intended to be inspected by the calling application rather than treated as a guarantee that every model-generated formula is semantically correct for every workbook.

Production integration guidance

Keep API credentials server-side, validate user-supplied spreadsheet context before forwarding it, and handle authentication, validation, quota, and temporary-service errors separately. For workflows that modify important workbooks, review low-confidence or warning-bearing results before applying them automatically. The public quickstart includes authenticated curl examples, response handling guidance, and links to the interactive API reference.

Read the quickstart   API reference