FormulaAIGenie API

Programmatic access to FormulaAIGenie's formula generation and fixing capabilities.

Authentication

All API requests require an API key. Include it in your request headers:

X-API-Key: your-api-key
# or
Authorization: Bearer your-api-key

Endpoints

POST /api/generate-formula

Generate 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"
}

POST /api/fix-formula

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"
}

Response Format

{
  "excel": "=SUMIF(A:A,"Done",B:B)",
  "googleSheets": "=SUMIF(A:A,"Done",B:B)",
  "explanation": "Conditional sum formula",
  "warnings": []
}

Rate Limits

  • Free: 10 requests/hour
  • Starter: 100 requests/hour
  • Professional: 1,000 requests/hour
  • Enterprise: 10,000+ requests/hour

Get an API Key

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).

Full Documentation

See complete API documentation for detailed examples and usage instructions.