cURL
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>" } ] }
List all LoRA adapters owned by the authenticated user
Bearer YOUR_ASYMMETRIC_API_KEY
Show child attributes
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}")