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

# FIBO Generate 1.5

> Use Bria FIBO Generate 1.5 with the Mynth SDK or REST API. Capabilities, inputs, auto size, and magic prompt.

```text Model ID theme={"theme":"kanagawa-dragon"}
bria/fibo-generate-1.5
```

See pricing & more on [mynth.io](https://mynth.io/models/bria%2Ffibo-generate-1.5).

## Capabilities

|                      |               |
| -------------------- | ------------- |
| **Modes**            | Text-to-image |
| **Inputs**           | None          |
| **Native auto size** | No            |
| **Magic prompt**     | Supported     |

## Generate

<CodeGroup>
  ```ts Mynth SDK theme={"theme":"kanagawa-dragon"}
  import Mynth from "@mynthio/sdk";

  const mynth = new Mynth();

  const task = await mynth.image.generate({
    prompt: 'Editorial travel poster titled "NIGHT MARKET", precise bilingual typography',
    model: "bria/fibo-generate-1.5",
    size: "landscape",
    count: 1,
  });

  console.log(task.urls);
  ```

  ```bash REST API theme={"theme":"kanagawa-dragon"}
  curl https://api.mynth.io/image/generate \
    -X POST \
    -H "Authorization: Bearer $MYNTH_API_KEY" \
    -H "Content-Type: application/json" \
    -d '{
      "prompt": "Editorial travel poster titled \"NIGHT MARKET\", precise bilingual typography",
      "model": "bria/fibo-generate-1.5",
      "size": "landscape",
      "count": 1
    }'
  ```
</CodeGroup>
