Overview
Genomic Intelligence runs transformer language models over DNA sequences for six tasks: promoter, splice site, enhancer, chromatin, expression, and annotation. The same models are exposed two ways: a typed REST API and an MCP server.
ReDoc is the full API reference, generated from the live OpenAPI schema. It documents every endpoint, field, and response. The pages here are guides and orientation — they don't restate the schema.
Two ways to integrate
Integrate directly
Call the REST API from any language. Authenticate with an API key, post a sequence to /v1/tasks/{task}/predict, and get back typed results. Use this when you are wiring the API into an application or pipeline.
Use it in an AI chat
Ask questions over DNA in Claude, ChatGPT, or your own agent and let it call the six tasks as tools. Start with no key and no install via the hosted GI connector, then move to a local server for real work.
The contract
Both paths share one contract:
- Six tasks, each at
POST /v1/tasks/{task}/predict:promoter,splice,enhancer,chromatin,expression,annotation. - Bearer auth on every
/v1/*route. Public (no key):/health,/docs,/redoc,/v1/openapi.json. - One success envelope —
{data, meta}on every 2xx and 202.datais task-specific;metais uniform. - One error envelope —
{error: {code, message, request_id, details?}}. Switch onerror.code, never the message. - Sync by default, async on request — add
Prefer: respond-asyncto submit a job, then pollGET /v1/tasks/jobs/{job_id}.
No key yet? Email [email protected].
The tasks
| Task | What it does |
|---|---|
| Promoter | Classify whether a sequence contains a promoter region. |
| Splice | Annotate donor and acceptor splice sites across long sequences. |
| Enhancer | Score developmental and housekeeping enhancer activity. |
| Chromatin | Predict chromatin features (DNase, CTCF, histone marks, …) as grouped tracks. |
| Expression | Predict gene expression from sequence + an experimental description, in log(TPM+1). |
| Annotation | Find genes by detecting TSS and PolyA signals, emitting transcript intervals. |
Integrating from a coding agent
Point a coding agent at the llms.txt index so it works from the same contract, or drop the single-file agent guide into your repo as AGENTS.md (or CLAUDE.md) — the raw Markdown is served at /AGENTS.md. For MCP clients, the MCP server reaches the same six tasks as typed tools.
Live URLs
- API base: https://api.genomicintelligence.ai
- API reference (ReDoc): https://api.genomicintelligence.ai/redoc
- Interactive API explorer (Swagger UI): https://api.genomicintelligence.ai/docs
- OpenAPI schema: https://api.genomicintelligence.ai/v1/openapi.json
For research and development use, not clinical or diagnostic decisions. Prefer to explore in a browser? Try the web app. Questions: [email protected].