Authentication Required

Please log in to your developer account to manage and generate API keys.

Go to Developer Login

API Keys

FREE TIER

Generate and manage access credentials for authenticating requests to Ife REST & MCP endpoints.

Live Usage
Active Keys
1 Key
Active authentication credentials
Monthly Account Quota
0 / 500
0%
Burst Rate Limit
10 reqs / min
Per active key token bucket

Create New API Key

Assign a descriptive label to distinguish environments (e.g. Production Webhooks, CI/CD Pipeline, Staging Worker).

✔ API Key Generated Successfully Save now — It will not be shown again!

Active API Keys

Authenticate requests with the HTTP header: X-API-Key: ife_live_...

Loading API keys...

How to Authenticate API Calls

Pass your active key in either the X-API-Key or Authorization: Bearer header.

# 1. Scrape clean markdown for LLM ingestion
curl -X POST https://ife.sluxia.com/api/v1/scrape \
  -H "X-API-Key: YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"url": "https://example.com", "format": "markdown"}'

# 2. Execute deterministic business rule engine
curl -X POST https://ife.sluxia.com/api/v1/tax-calculator \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"amount": 1000, "country": "US", "state": "CA"}'