Quick Start

Get up and running with Flowly in 5 minutes. Choose your integration method.

Option 1: SDK

Install the SDK for programmatic access to all Flowly features.

1. Install

npm install @flowly/sdk

2. Initialize

import { Flowly } from '@flowly/sdk'

const flowly = new Flowly({
  apiKey: process.env.FLOWLY_API_KEY
})

3. Make a payment

const result = await flowly.pay({
  amount: 50.00,
  vendor: 'openai.com',
  optimize_for: 'cost'
})

console.log(result.rail_used) // 'ramp'
console.log(result.transaction_id)

Option 2: For AI Agents

Give your AI agent access to Flowly via our skill endpoint.

Use Flowly to route payments across rails, access persistent memory, and manage agent identity. Works with Claude Code, OpenAI Agents, and any agent framework that supports skill URLs.

Connect Rails

Connect your payment rails in the dashboard or via API.

Stripe MPP

Connect via OAuth in dashboard

Ramp Agent Cards

API key from Ramp dashboard

Visa TAP

Connect via OAuth in dashboard

Coinbase x402

API key from Coinbase Developer

Next Steps