Integration kit
Everything you need to call the REST API from Python: one drop-in client file and five self-contained recipes for the problems partners hit first. You can read every file in the browser (links below) or download the whole kit and run it locally.
Download the integration kit
(.tar.gz), or fetch it inline:
curl -LO https://docs.genomicintelligence.ai/integration-kit.tar.gz
tar -xzf integration-kit.tar.gz
cd integration-kit/
What's inside
| Section | What it is |
|---|---|
| Python client | gi_client.py — a single file that depends only on requests. Plus quickstart.py (runs every task end to end) and the bundled example sequences. |
| Recipes | Five runnable scripts: health probe, batch promoter prediction, async polling, rate-limit-aware retry, and typed error handling. |
The client is deliberately a single file with one dependency — drop
gi_client.py into your project rather than installing an SDK. If you want the
full per-endpoint request/response schemas, see the
API reference (ReDoc); this kit
covers the load-bearing integration path, not every field.
Prefer to drive the API from an AI agent instead of writing a client? See the MCP server — it exposes the same six tasks as tools, no client code required.