DeepInfra raises $107M Series B to scale the inference cloud — read the announcement

Bria logo

Bria/

fibo-1.5

Partner

$0.04

/ image

FIBO 1.5 is Bria's JSON-native text-to-image model, distilled to a few sampling steps and post-trained for sharper realism and texture, with structured-prompt control over lighting, composition and camera.

Public
Paper
Bria/fibo-1.5 cover image
demo

HTTP/cURL API

You can use cURL or any other http client to run inferences:

curl -X POST \
    -d '{}'  \
    -H "Authorization: bearer $DEEPINFRA_TOKEN"  \
    -H 'Content-Type: application/json'  \
    'https://api.deepinfra.com/v1/inference/Bria/fibo-1.5'
copy

which will give you back something similar to:

{
  "images": [
    null
  ],
  "structured_prompt": null,
  "seed": 0,
  "request_id": null,
  "inference_status": {
    "status": "unknown",
    "runtime_ms": 0,
    "cost": 0.0,
    "tokens_generated": 0,
    "tokens_input": 0,
    "output_length": 0
  }
}

copy

Input fields

Input Schema

Output Schema