Get started with 1Flow by creating your account and setting up API access

Step 1: Create Your Account

  1. Visit 1Flow.io
  2. Sign up with your email or Google account
  3. Verify your email address
1Flow login screen
The 1Flow login screen

Step 2: Create an Organization

After signing in, create your first organization:

  1. Click Create Organization in the dashboard
  2. Enter your organization name
  3. Choose your preferred settings

Organizations help you manage documents, team members, and billing in one place.

Step 3: Get Your API Keys

To integrate 1Flow with your applications, you'll need API keys:

  1. Go to Organization SettingsAPI Keys
  2. Click Create API Key
  3. Give your key a descriptive name (e.g., "Production", "Development")
  4. Copy and securely store your API key

Step 4: Install the SDK (Optional)

If you're integrating via API, install one of our official SDKs:

JavaScript/TypeScript:

npm install @1flow/sdk

Python:

pip install 1flow-sdk

Ruby:

gem install 1flow

Step 5: Make Your First API Call

Test your setup with a simple API call:

curl -X GET https://api.1flow.io/v1/documents \
  -H "Authorization: Bearer YOUR_API_KEY"

Next Steps