Lora

Get List Lora

Get list lora models

GET https://api.crazyhorse.ai/v1/lora

Get list lora models

Headers

Name
Type
Description

api-key*

String

[
    {
      "state": "DONE",
      "url": "https://civitai.com/api/v1/models/118870",
      "name": "Marie Rose (DoA) Swimsuit",
      "modelId": "118870",
      "id": "2685e0bd-211f-4304-86bf-0589e226fae3"
    }
]
/ require the myapi module and set it up with your API key
const axios = require('axios').default;
const options = {
   headers: {
     'api-key': 'xxxxxxxx'
   }
};
const url = 'https://api.crazyhorse.ai/v1/lora';
const getLoras = away axios.get(url, options)

Install Lora

Install new lora model

POST https://api.crazyhorse.ai/v1/lora

Install new lora model

Headers

Name
Type
Description

api-key*

String

Request Body

Name
Type
Description

modelId*

string

extract from url: https://civitai.com/models/153619/quokka-xl

modelId: 15361

Last updated