Skip to content

Welcome to Floopy Docs

Floopy is an AI Agent Optimization Platform. It includes an AI gateway that sits between your application and LLM providers, and layers feedback-driven routing on top — combining end-user session NPS, LLM-as-judge scoring, admin ratings, and public benchmarks to continuously route each request to the most cost-effective model that keeps quality. Caching, security, and observability come in the same box — all without changing your application code beyond a single line.

Quick Start

Point your OpenAI SDK at Floopy and you’re live:

import { OpenAI } from "openai";
const client = new OpenAI({
baseURL: "https://api.floopy.ai/v1",
apiKey: process.env.FLOOPY_API_KEY,
});
const response = await client.chat.completions.create({
model: "gpt-4o",
messages: [{ role: "user", content: "Hello!" }],
});

No SDK to install. Works with any language that supports the OpenAI API format.

Guides

Features

Billing

Supported Providers

Floopy translates requests to the correct format automatically. You just change the model name:

ProviderExample Models
OpenAIgpt-4o, gpt-4o-mini, o1, o3-mini
Anthropicclaude-sonnet-4-20250514, claude-3-5-haiku-20241022
Google Geminigemini-2.5-pro, gemini-2.0-flash
Groqllama-3.3-70b-versatile, mixtral-8x7b-32768
Mistralmistral-large-latest, mistral-small-latest
DeepSeekdeepseek-chat, deepseek-reasoner

Need Help?

  • Dashboard — manage your organization, keys, and settings
  • Status Page — check gateway health
  • GitHub — report issues and request features