---
title: "Recraft recraft-remove-background API — Pricing, code samples | RunAPI"
url: "https://runapi.ai/models/recraft/remove-background.md"
canonical: "https://runapi.ai/models/recraft/remove-background.md"
locale: "en"
model: "Recraft"
provider: "Recraft"
variant_id: "recraft-remove-background"
sdk_model_id: "recraft-remove-background"
modality: "utility"
price_from_cents: 1
billing_unit: "call"
status: "active"
---

# Recraft recraft-remove-background API

Same API, same SDK — switch variants by changing one parameter.

## Pricing

**$0.010** per call

Failed generations are not charged

## Spec sheet

| Field | Value |
|---|---|
| Model ID | `recraft-remove-background` |
| Provider | Recraft |
| Modality | utility |
| Task type | asynchronous |
| Billing unit | call |
| API endpoint | `/api/v1/recraft/remove_background` |
| Status | active |

## Install

```sh
npm install @runapi.ai/recraft
```

## Quickstart

```sh
curl -X POST https://api.runapi.ai/api/v1/recraft/remove_background \
  -H "Authorization: Bearer $RUNAPI_KEY" \
  -H "Content-Type: application/json" \
  -d '{ "model": "recraft-remove-background", "prompt": "..." }'
```

```js
import RunAPI from "@runapi.ai/recraft";

const client = new RunAPI(process.env.RUNAPI_KEY);
const task = await client.create({
  model: "recraft-remove-background",
  prompt: "...",
});
```

## FAQ

### Is the model ID stable across versions?

RunAPI keeps the model ID stable and handles compatible version refreshes without changing your request shape.

### What&#39;s the rate limit on this variant?

Per-key rate limits scale with usage tier. See pricing page for current limits.

### Can I switch variants later?

Yes — variant is a flag. Switch by changing the model parameter.

### Does it stream?

Where streaming is available, RunAPI streams end-to-end.

### Where do I report quality issues?

Open an issue on the public GitHub repo or email support.


## Related

Other Recraft variants:

- [recraft-crisp-upscale](https://runapi.ai/models/recraft/crisp-upscale.md) — `crisp-upscale` · $0.010
