Skip to main content
GET
/
adaption
/
loras
List LoRA Adapters
curl --request GET \
  --url https://api.example.com/adaption/loras \
  --header 'Authorization: <authorization>'
{
  "loras": [
    {
      "name": "<string>",
      "memory_group": "<string>",
      "version": 123,
      "ready": true,
      "created_at": "<string>"
    }
  ]
}

GET /adaption/loras

List all LoRA adapters owned by the authenticated user.

Authentication

Authorization
string
required
Bearer token with your API key. Format: Bearer YOUR_ASYMMETRIC_API_KEY

Response

loras
array
Array of LoRA adapter objects

Example

import requests

response = requests.get(
    "https://rkdune--symmetry.modal.run/adaption/loras",
    headers={"Authorization": "Bearer YOUR_ASYMMETRIC_API_KEY"}
)

data = response.json()
for lora in data["loras"]:
    status = "Ready" if lora["ready"] else "Not ready"
    print(f"{lora['name']} v{lora['version']}: {status}")

Errors

StatusDescription
401Invalid API key
500Failed to list LoRAs