For AI agents: a documentation index is available at the root level at /llms.txt and /llms-full.txt. Append /llms.txt to any URL for a page-level index, or .md for the markdown version of any page.
  • Get Started
    • Introduction
    • Quickstart
    • Authentication
  • Python SDK
    • Install
    • Usage
    • Errors
  • CLI
    • Overview
LogoLogo
On this page
  • 1. Install
  • 2. Get an API key
  • 3. Authenticate
  • 4. List your workflows
  • 5. Start a workflow run
  • 6. Watch run progress
  • Next steps
Get Started

Quickstart

Was this page helpful?
Previous

Authentication

Next
Built with

Get from zero to a running workflow in under 5 minutes.

1. Install

$pip install onepin

Python 3.10 or later required. The package includes both the onepin Python library and the onepin CLI entry point.

2. Get an API key

Sign in at app.onepin.ai/settings/api-keys, create a key, and copy the value. Keys are prefixed op_live_.

3. Authenticate

$onepin login
$# Paste your key when prompted

4. List your workflows

$onepin workflows list

5. Start a workflow run

$onepin workflows run 3fa85f64-5717-4562-b3fc-2c963f66afa6

6. Watch run progress

$onepin workflows run 3fa85f64-5717-4562-b3fc-2c963f66afa6 --watch

Next steps

  • Authentication — full scope table, credential file format, key rotation
  • Python SDK — Usage — all resources, pagination, async, error handling
  • CLI — Overview — complete command reference and global flags