Programmatic access to FormulaAIGenie's formula generation and fixing capabilities.
All API requests require an API key. Include it in your request headers:
X-API-Key: your-api-key
# or
Authorization: Bearer your-api-keyGenerate formulas from natural language descriptions.
POST /api/generate-formula
Headers: X-API-Key: your-api-key
Body: {
"input": "Sum column B where column A is Completed"
}Fix and translate existing formulas between Excel and Google Sheets.
POST /api/fix-formula
Headers: X-API-Key: your-api-key
Body: {
"input": "=SUMIF(A:A,"Done",B:B"
}{
"excel": "=SUMIF(A:A,"Done",B:B)",
"googleSheets": "=SUMIF(A:A,"Done",B:B)",
"explanation": "Conditional sum formula",
"warnings": []
}Contact us at kokilavijayakumar2@gmail.com to request API access.
For testing, you can use: test, demo, or free as API keys (10 requests/hour limit).
See complete API documentation for detailed examples and usage instructions.