Liya Engine

Liya Engine Documentation

Everything you need to integrate domain-aware AI intelligence into your product.

Liya Engine is a multi-tenant AI platform that gives your application access to vertical intelligence packs — structured, intent-driven AI designed for specific domains like hiring, fintech, healthcare, and EHS.

How it works

Every API call has three parts:

  • Domain — the vertical context (hiring, fintech, healthcare, ehs, or a custom domain you define)
  • Intent — the specific operation within that domain (e.g. resume-analysis, candidate-prescreen)
  • Input — the structured data relevant to that intent (resume text, job description, candidate profile, etc.)

The engine routes the request, applies your tenant configuration (persona, model strategy, guardrails, RAG), and returns a structured, schema-validated response.

Authentication

All /v1/* API calls authenticate with an x-api-key header. Your API key is generated when you create an account and is available in the dashboard.

curl -X POST https://api.liyaengine.ai/v1/hiring/resume-analysis \
  -H "x-api-key: $LIYA_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{ ... }'

See Authentication for full details including key rotation and environments.

AuthenticationAPI keys, environments, key rotation
Domain PacksHiring, Fintech, Healthcare, EHS, Custom
BYOKBring your own OpenAI / Anthropic / Azure key
Dashboard APIAccount, usage, sessions, audit
ConfigurationPersona, models, RAG, agentic mode
GuidesQuickstart, RAG pipeline, custom domains

On this page