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: Claude Code

Add Flowly as an MCP server and use natural language commands.

1. Add MCP Server

claude mcp add flowly

2. Configure API Key

export FLOWLY_API_KEY=fl_...

3. Use natural language

claude "Purchase $50 of OpenAI credits using the cheapest rail"

claude "What's my agent's spending history this month?"

claude "Export my agent credentials for Ramp"

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

Natural

Connect via OAuth in dashboard

Coinbase x402

API key from Coinbase Developer

Next Steps