For the complete documentation index, see llms.txt. This page is also available as Markdown.

Quickstart (5 minutes)

Create an agent, connect your tools, and make your first paid API call on the $3 Welcome Credit — no card required. Cap spending with server-side controls you set — per task, day, vendor, or team (set them once you've seen it work). That's the whole product: a funded balance with budgets enforced server-side.

$3 Welcome Credit (300 API credits). Roughly 300 calls at a typical ~$0.01/call — the cheapest vendors (like $0.001 Exa Contents) stretch it into the thousands. Your first agent can start paying for APIs today, no card required. The grant is once per account, not per agent. Get started →


1. Create an agent

Go to dev-dashboard.floelabs.xyz, sign in with email or Google, and click New agent. Copy the API key (starts with floe_…) — it's shown once. Export it so the examples below can read it:

export FLOE_API_KEY="floe_..."

Floe provisions everything your agent needs in the background — a funded balance and the $3 Welcome Credit (granted once per account, not per agent).

2. Connect to your AI tools & models

Point your coding agent at Floe and it does the setup for you — installs a client, provisions an agent, sets guardrails, and makes a real paid call. Paste this into Claude Code, Cursor, or Codex:

Read https://dev-dashboard.floelabs.xyz/agents.md and set up Floe for this project.

agents.md is an executable runbook written for agents: it triages what you already have, installs the right client, states the key-handling rules, provisions an agent, and ends with a settled paid call.

Prefer to wire it up yourself? Pick one client:

Install the Floe agent skill so Claude Code / Cursor knows the whole workflow — onboard, migrate, cap spend, show the receipt:

npx skills add floe-labs/agent-skills

Full guide: Claude Code / Agent Skills.

Claude Code, one line:

claude mcp add --transport http floe https://mcp.floelabs.xyz/mcp \
  --header "Authorization: Bearer YOUR_FLOE_KEY"

Any client that takes JSON (Cursor .cursor/mcp.json, VS Code):

{
  "mcpServers": {
    "floe": {
      "type": "http",
      "url": "https://mcp.floelabs.xyz/mcp",
      "headers": { "Authorization": "Bearer YOUR_FLOE_KEY" }
    }
  }
}

Full reference: MCP Server. Deep links and per-client configs: Set up with your AI tools.

npx @floelabs/cli init   # onboard: create or select an agent, mint its key, get the base-URL swap
npm i -g @floelabs/cli   # keeps the `floe` bin around for the commands below
floe status --json       # am I set up? balance, budgets, active agent + key

And everything else lives on the same bin — floe chat "hi" for a metered LLM call, floe budget set 5 --per day to cap spend, floe activity to watch the money. Full reference: Floe CLI.

The SDK takes an agent key (floe_…), not a floe_live_… developer key. See Set up with your AI tools.

3. Make your first paid call

Spend the $3 Welcome Credit — no card needed. Install the SDK and call fetch. If the API is x402-gated, payment happens automatically; if it's free, the request passes through. Either way, your agent's balance updates.

That's a fraction of a cent against the $3 Welcome Credit — the settled cost prints from the X-Floe-Cost-USDC receipt header. floe test --voice runs a full STT → LLM → TTS turn: three legs, one key, one bill.

That's the entire happy path — one HTTP call with your Floe key.

4. Fund & set budgets (later)

You don't need any of this to make your first call — the Welcome Credit covers it. Come back once you've seen the loop work.

  • Fund it. When the Welcome Credit runs low, click Fund Wallet on the agent and pay with card, Apple Pay, Google Pay, or bank transfer. Funds arrive within seconds. Suggested first amount: $10. See Funding your agent.

  • Set a spend control. Cap what the agent can spend — per call, per day, per vendor, or across your whole team. Enforced server-side, so a runaway loop can't blow your budget. See Spend Controls. (Scope note: Floe caps x402 payments made through the proxy, not LLM token bills you pay with your own provider key.)

What's next


That's it — you made a paid API call on the Welcome Credit, all in dollars.

Last updated