Installation
There are three ways to work with an oikapi instance, and all three reach the same API:
- The web interface — administering an instance and working with records. Nothing to install.
- The
oiCLI — scripting, CI, and app development. This page covers installing it. - The REST API — anything you drive from your own code. See the API reference.
Use whichever fits the task. Most day-to-day administration happens in the web interface; the CLI is what you reach for when a change should be repeatable, reviewable, or scripted.
Install the CLI
Section titled “Install the CLI”On macOS and Linux:
curl -fsSL https://get.oikapi.com/cli | shThe installer detects your operating system and architecture — there is nothing to choose between Apple Silicon, Intel, and x86_64 Linux.
On Windows, use PowerShell:
irm https://get.oikapi.com/cli.ps1 | iexConnect to your instance
Section titled “Connect to your instance”# Log in to your oikapi instanceoi login https://your-instance.example.com
# Verify your connectionoi whoamiVerify the installation
Section titled “Verify the installation”# Check versionoi version
# List available tablesoi table listNext steps
Section titled “Next steps”- Quick Start – Create your first table
- CLI Reference – Full command reference
- App Development – Build custom applications