curl --request GET \
--url https://api.aurous-labs.com/v1/loras \
--header 'X-Api-Key: <api-key>'import requests
url = "https://api.aurous-labs.com/v1/loras"
headers = {"X-Api-Key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'X-Api-Key': '<api-key>'}};
fetch('https://api.aurous-labs.com/v1/loras', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.aurous-labs.com/v1/loras",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"X-Api-Key: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.aurous-labs.com/v1/loras"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("X-Api-Key", "<api-key>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.aurous-labs.com/v1/loras")
.header("X-Api-Key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.aurous-labs.com/v1/loras")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["X-Api-Key"] = '<api-key>'
response = http.request(request)
puts response.read_body[
{
"id": "lora_01HXMQ7Z3K8Y2VNABCDEFGHJKM",
"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,
"default_cfg_rescale": 0.7,
"consistency_defaults": {
"steps": 7,
"guidance_scale": 3,
"cfg_rescale": null,
"denoise_strength": null
},
"has_template": true
}
]{
"error": {
"type": "invalid_request",
"code": "balance_too_low",
"message": "Team available balance is 1.5 credits, generation requires 2.0.",
"doc_url": "https://docs.aurous-labs.com/errors#balance_too_low",
"request_id": "req_01HXMQ7Z3K8Y2VNABCDEFGHJKM",
"param": "prompt",
"reason": "wrong_view",
"detected_view": "full_left"
}
}{
"error": {
"type": "invalid_request",
"code": "balance_too_low",
"message": "Team available balance is 1.5 credits, generation requires 2.0.",
"doc_url": "https://docs.aurous-labs.com/errors#balance_too_low",
"request_id": "req_01HXMQ7Z3K8Y2VNABCDEFGHJKM",
"param": "prompt",
"reason": "wrong_view",
"detected_view": "full_left"
}
}{
"error": {
"type": "invalid_request",
"code": "balance_too_low",
"message": "Team available balance is 1.5 credits, generation requires 2.0.",
"doc_url": "https://docs.aurous-labs.com/errors#balance_too_low",
"request_id": "req_01HXMQ7Z3K8Y2VNABCDEFGHJKM",
"param": "prompt",
"reason": "wrong_view",
"detected_view": "full_left"
}
}List available LoRA styles
Returns all LoRA styles available to your team, including public LoRAs and any privately delivered to your team. Each item carries an opaque lora_* ID and a URL-friendly slug; either form works in /v1/loras/:id_or_slug and in the lora_id field of POST /v1/images.
curl --request GET \
--url https://api.aurous-labs.com/v1/loras \
--header 'X-Api-Key: <api-key>'import requests
url = "https://api.aurous-labs.com/v1/loras"
headers = {"X-Api-Key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'X-Api-Key': '<api-key>'}};
fetch('https://api.aurous-labs.com/v1/loras', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.aurous-labs.com/v1/loras",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"X-Api-Key: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.aurous-labs.com/v1/loras"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("X-Api-Key", "<api-key>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.aurous-labs.com/v1/loras")
.header("X-Api-Key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.aurous-labs.com/v1/loras")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["X-Api-Key"] = '<api-key>'
response = http.request(request)
puts response.read_body[
{
"id": "lora_01HXMQ7Z3K8Y2VNABCDEFGHJKM",
"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,
"default_cfg_rescale": 0.7,
"consistency_defaults": {
"steps": 7,
"guidance_scale": 3,
"cfg_rescale": null,
"denoise_strength": null
},
"has_template": true
}
]{
"error": {
"type": "invalid_request",
"code": "balance_too_low",
"message": "Team available balance is 1.5 credits, generation requires 2.0.",
"doc_url": "https://docs.aurous-labs.com/errors#balance_too_low",
"request_id": "req_01HXMQ7Z3K8Y2VNABCDEFGHJKM",
"param": "prompt",
"reason": "wrong_view",
"detected_view": "full_left"
}
}{
"error": {
"type": "invalid_request",
"code": "balance_too_low",
"message": "Team available balance is 1.5 credits, generation requires 2.0.",
"doc_url": "https://docs.aurous-labs.com/errors#balance_too_low",
"request_id": "req_01HXMQ7Z3K8Y2VNABCDEFGHJKM",
"param": "prompt",
"reason": "wrong_view",
"detected_view": "full_left"
}
}{
"error": {
"type": "invalid_request",
"code": "balance_too_low",
"message": "Team available balance is 1.5 credits, generation requires 2.0.",
"doc_url": "https://docs.aurous-labs.com/errors#balance_too_low",
"request_id": "req_01HXMQ7Z3K8Y2VNABCDEFGHJKM",
"param": "prompt",
"reason": "wrong_view",
"detected_view": "full_left"
}
}Authorizations
Your team API key (starts with al_live_).
Headers
Optional API version pin (YYYY-MM-DD). Omit the header to receive the platform default, currently 2026-08-26.
^\d{4}-\d{2}-\d{2}$"2026-08-26"
Response
List of available LoRA styles
Opaque LoRA identifier
"lora_01HXMQ7Z3K8Y2VNABCDEFGHJKM"
Display name of the LoRA style
"Golden Hour Photography"
Whether this LoRA is publicly available
true
Creation timestamp (ISO 8601)
"2026-03-01T00:00:00Z"
URL-friendly slug (mutable; opaque ID is canonical)
"golden-hour-photography"
Description of the LoRA style and its effects
"Adds warm golden-hour lighting with soft lens flares"
URL of the LoRA preview image
"https://cdn.aurous-labs.com/previews/golden-hour.jpg"
Default denoising strength applied at inference if not overridden by the request body. Range 0.0-1.0.
0 <= x <= 10.8
Default classifier-free guidance scale applied at inference if not overridden by the request body. Range 0.1-30.
0.1 <= x <= 307.5
Default number of diffusion steps applied at inference if not overridden by the request body. Range 1-100.
1 <= x <= 10030
Default CFG rescale factor applied at inference if not overridden by the request body or a character override. Range 0.0-1.0.
0 <= x <= 10.7
Per-mode default overrides applied when a character_id or reference_image_urls is supplied on the generation request. Each field falls back to the matching top-level default_* field if unset. Customer values on the request still win — these are pre-fill defaults, not floors.
Show child attributes
Show child attributes
Whether this LoRA has a prompt template applied server-side at dispatch.
true

