API
Public JSON endpoints, no API key required. All responses are CORS-enabled and return application/json.
Connection status
Live checks against every public endpoint.
/api/public/healthChecking…
/api/public/domainChecking…
/api/public/seo-auditChecking…
GET
/api/public/healthService heartbeat. Returns status, service name and server time.
curl -s "https://flowdiction.com/api/public/health"GET
/api/public/domainLinguistic + SEO scoring and valuation estimate for a single domain.
Format: bare domain, e.g. flowdiction.com — no https://, no path.
curl -s "https://flowdiction.com/api/public/domain?domain=flowdiction.com"GET
/api/public/seo-auditLive 14-point on-page SEO audit of any public URL.
Format: full page URL, e.g. https://example.com/pricing (https is added if omitted).
curl -s "https://flowdiction.com/api/public/seo-audit?url=https%3A%2F%2Fexample.com"Conventions
- Base URL:
https://flowdiction.com - Success:
{ "status": "ok", "data": …, "time": … } - Errors return
400for bad input and502when a target URL cannot be fetched. - Responses are cached at the edge for up to 5 minutes; health is never cached.