# Bria Ad Delayer

> Convert a flat ad image into editable layers - background, product and logo cutouts, live text with typography, and vector shapes


## Overview

- **Endpoint**: `https://fal.run/bria/ad-delayer`
- **Model ID**: `bria/ad-delayer`
- **Category**: image-to-json
- **Kind**: inference
**Tags**: utility, editing



## Pricing

- **Price**: $0.3 per requests

For more details, see [fal.ai pricing](https://fal.ai/pricing).

## API Information

This model can be used via our HTTP API or more conveniently via our client libraries.
See the input and output schema below, as well as the usage examples.


### Input Schema

The API accepts the following input parameters:


- **`image_url`** (`string`, _optional_):
  Reference ad image to split into layers, as a public URL. Default value: `"https://bria-datasets.s3.amazonaws.com/ad-delayer/aurora_ad.png"`
  - Default: `"https://bria-datasets.s3.amazonaws.com/ad-delayer/aurora_ad.png"`
  - Examples: "https://bria-datasets.s3.amazonaws.com/ad-delayer/aurora_ad.png"

- **`text_mode`** (`TextModeEnum`, _optional_):
  Where the copy's glyphs come from. 'svg' traces them out of the reference ad as vector outlines, keeping the original letterforms; 'font' typesets them as live, editable text in the nearest matching font. Default value: `"svg"`
  - Default: `"svg"`
  - Options: `"svg"`, `"font"`



**Required Parameters Example**:

```json
{}
```

**Full Example**:

```json
{
  "image_url": "https://bria-datasets.s3.amazonaws.com/ad-delayer/aurora_ad.png",
  "text_mode": "svg"
}
```


### Output Schema

The API returns the following output format:



**Example Response**:

```json
{}
```


## Usage Examples

### cURL

```bash
curl --request POST \
  --url https://fal.run/bria/ad-delayer \
  --header "Authorization: Key $FAL_KEY" \
  --header "Content-Type: application/json" \
  --data '{}'
```

### Python

Ensure you have the Python client installed:

```bash
pip install fal-client
```

Then use the API client to make requests:

```python
import fal_client

def on_queue_update(update):
    if isinstance(update, fal_client.InProgress):
        for log in update.logs:
           print(log["message"])

result = fal_client.subscribe(
    "bria/ad-delayer",
    arguments={},
    with_logs=True,
    on_queue_update=on_queue_update,
)
print(result)
```

### JavaScript

Ensure you have the JavaScript client installed:

```bash
npm install --save @fal-ai/client
```

Then use the API client to make requests:

```javascript
import { fal } from "@fal-ai/client";

const result = await fal.subscribe("bria/ad-delayer", {
  input: {},
  logs: true,
  onQueueUpdate: (update) => {
    if (update.status === "IN_PROGRESS") {
      update.logs.map((log) => log.message).forEach(console.log);
    }
  },
});
console.log(result.data);
console.log(result.requestId);
```


## Additional Resources

### Documentation

- [Model Playground](https://fal.ai/models/bria/ad-delayer)
- [API Documentation](https://fal.ai/models/bria/ad-delayer/api)
- [OpenAPI Schema](https://fal.ai/api/openapi/queue/openapi.json?endpoint_id=bria/ad-delayer)

### fal.ai Platform

- [Platform Documentation](https://fal.ai/docs/documentation)
- [Python Client](https://fal.ai/docs/api-reference/client-libraries/python)
- [JavaScript Client](https://fal.ai/docs/api-reference/client-libraries/javascript)

### Other agent-readable surfaces

This file covers one model. To find anything else:

- [Platform overview](https://fal.ai/llms.txt): Entry points and representative endpoint IDs
- [Documentation index](https://fal.ai/docs/llms.txt): Every documentation page
- [Full documentation text](https://fal.ai/docs/llms-full.txt): The whole documentation inlined
- Any other model: `https://fal.ai/models/<endpoint-id>/llms.txt`
