> ## Documentation Index
> Fetch the complete documentation index at: https://docs.poof.bg/llms.txt
> Use this file to discover all available pages before exploring further.

# Introduction

> The developer-first standard for background removal. Precise, fast, and scalable.

<img className="block dark:hidden" src="https://mintcdn.com/poof-c47e4d5c/B3_p_0te6ZFRij2P/images/hero-light.png?fit=max&auto=format&n=B3_p_0te6ZFRij2P&q=85&s=5488cbb3cf205e4653015edb177dbe4f" alt="Poof Hero" width="1200" height="634" data-path="images/hero-light.png" />

<img className="hidden dark:block" src="https://mintcdn.com/poof-c47e4d5c/B3_p_0te6ZFRij2P/images/hero-dark.png?fit=max&auto=format&n=B3_p_0te6ZFRij2P&q=85&s=50131c47dbc8742fe94975ddb2e0f548" alt="Poof Hero" width="1200" height="634" data-path="images/hero-dark.png" />

## What is Poof?

Poof is a background removal API built for developers who need precision at scale. Whether you're building an e-commerce platform, a photo editing app, or automating image workflows, Poof delivers consistent, high-quality results with a simple API.

<CardGroup cols={2}>
  <Card title="Quick Start" icon="rocket" href="/quickstart">
    Make your first API call in under 2 minutes
  </Card>

  <Card title="API Reference" icon="code" href="/api-reference/remove-background">
    Explore endpoints and parameters
  </Card>

  <Card title="Integrations" icon="puzzle-piece" href="/integrations/overview">
    Python, TypeScript, n8n, Zapier, Make, and MCP integrations
  </Card>

  <Card title="Dashboard" icon="gauge" href="https://dash.poof.bg">
    Get your API key and manage usage
  </Card>
</CardGroup>

## Key Features

<AccordionGroup>
  <Accordion title="🎯 Precision Edge Detection">
    State-of-the-art AI that handles hair, fur, transparency, and complex edges with pixel-perfect accuracy.
  </Accordion>

  <Accordion title="⚡ Fast Processing">
    Sub-second response times for most images. Process thousands of images without breaking a sweat.
  </Accordion>

  <Accordion title="🔧 Flexible Output">
    PNG with transparency, JPEG with custom backgrounds, WebP for web optimization. Crop, resize, and customize.
  </Accordion>

  <Accordion title="📦 Simple Integration">
    One endpoint. One API key. SDKs for popular languages and platforms.
  </Accordion>
</AccordionGroup>

## Quick Example

Remove a background in seconds:

<CodeGroup>
  ```bash cURL theme={null}
  curl -X POST https://api.poof.bg/v1/remove \
    -H "x-api-key: YOUR_API_KEY" \
    -F "image_file=@photo.jpg" \
    -o result.png
  ```

  ```python Python theme={null}
  from poofbg import Poof

  client = Poof(api_key="YOUR_API_KEY")
  result = client.remove("photo.jpg")
  result.save("result.png")
  ```

  ```typescript TypeScript theme={null}
  import { Poof } from '@poof-bg/js';

  const poof = new Poof({ apiKey: 'YOUR_API_KEY' });
  const result = await poof.removeBackground(imageFile);
  ```
</CodeGroup>

## How It Works

1. **Upload** — Send your image to the `/remove` endpoint
2. **Process** — Our AI analyzes and removes the background
3. **Download** — Receive the processed image in your response

Ready to get started? [Get your API key →](https://dash.poof.bg)
