Strigs API

Spreadsheet Intelligence API

Turn spreadsheet intent into usable formulas.

Generate, repair, explain, and translate Excel and Google Sheets formulas through a stable authenticated API with syntax validation and compatibility diagnostics.

View plansTry the quickstart

Generate

Describe the calculation you need and receive a structured formula response.

Fix

Repair malformed spreadsheet formulas and receive an explanation of the correction.

Explain

Turn dense formulas into concise descriptions of what they calculate.

Convert

Translate between Excel and Google Sheets when possible, with warnings when compatibility is uncertain.

One request, structured output

curl -X POST https://api.strigsapi.com/v1/formula/generate \
  -H "X-API-Key: $STRIGS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"platform":"excel","instruction":"Sum cells A1 through A10"}'
{
  "operation": "generate",
  "platform": "excel",
  "formula": "=SUM(A1:A10)",
  "explanation": "Sums the values in cells A1 through A10 in Excel.",
  "validation": {"status": "valid", "warnings": [], "functions": ["SUM"]},
  "confidence": 0.99
}

Example output is representative of the validated response contract; model-generated wording can vary.

Plans

Daily quotas count successful authenticated operations. Failed provider/configuration requests do not consume successful-operation quota.

Pro

$19/month

1,000 successful operations/day

Choose Pro

Start in three steps

1. Choose a plan

Checkout is hosted by Stripe.

2. Save your API key

Your credential is issued after payment and shown once.

3. Call the API

Send the key in X-API-Key. Check usage anytime at /v1/usage.

Open the public quickstart →