Skip to main content
GET
/
v1
/
loras
List available LoRA styles
curl --request GET \
  --url https://api.example.com/v1/loras \
  --header 'X-Api-Key: <api-key>'
[
  {
    "id": "lora_01HXMQ7Z3K8Y2ABCDEFGHJKM",
    "name": "Golden Hour Photography",
    "is_public": true,
    "created_at": "2026-03-01T00:00:00Z",
    "slug": "golden-hour-photography",
    "description": "Adds warm golden-hour lighting with soft lens flares",
    "preview_image_url": "https://cdn.aurous-labs.com/previews/golden-hour.jpg",
    "default_denoise_strength": 0.8,
    "default_guidance_scale": 7.5,
    "default_steps": 30,
    "has_template": true
  }
]

Documentation Index

Fetch the complete documentation index at: https://docs.aurous-labs.com/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

X-Api-Key
string
header
required

Your team API key (starts with al_live_ — legacy keys may start with og_).

Headers

Aurous-Version
string

Optional API version pin (YYYY-MM-DD). Defaults to your team's pinned version, or the system default 2026-05-15 for unauthenticated requests.

Pattern: ^\d{4}-\d{2}-\d{2}$
Example:

"2026-05-15"

Response

List of available LoRA styles

id
string
required

Opaque LoRA identifier

Example:

"lora_01HXMQ7Z3K8Y2ABCDEFGHJKM"

name
string
required

Display name of the LoRA style

Example:

"Golden Hour Photography"

is_public
boolean
required

Whether this LoRA is publicly available

Example:

true

created_at
string
required

Creation timestamp (ISO 8601)

Example:

"2026-03-01T00:00:00Z"

slug
object

URL-friendly slug (mutable; opaque ID is canonical)

Example:

"golden-hour-photography"

description
string

Description of the LoRA style and its effects

Example:

"Adds warm golden-hour lighting with soft lens flares"

preview_image_url
string

URL of the LoRA preview image

Example:

"https://cdn.aurous-labs.com/previews/golden-hour.jpg"

default_denoise_strength
number

Default denoising strength applied at inference if not overridden by the request body. Range 0.0-1.0.

Required range: 0 <= x <= 1
Example:

0.8

default_guidance_scale
number

Default classifier-free guidance scale applied at inference if not overridden by the request body. Range 0.1-30.

Required range: 0.1 <= x <= 30
Example:

7.5

default_steps
number

Default number of diffusion steps applied at inference if not overridden by the request body. Range 1-100.

Required range: 1 <= x <= 100
Example:

30

has_template
boolean

Whether this LoRA has a prompt template applied server-side at dispatch.

Example:

true