Model
Get List Model
Get list model
GET
https://api.crazyhorse.ai/v1/Model
Get list model
Headers
Name
Type
Description
api-key*
String
[
{
"name": "Koharu Yuna",
"country": "Japan",
"style": "Innocent, Sweet Girl",
"birthday": "9/22/2002",
"height": "160",
"id": "yuna-jp"
}
]
/ 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/Model';
const getModels = away axios.get(url, options)
How to use model
When you finish obtaining the list of models, you can then use the "id" field as a parameter, referred to as "girlId" in the generations API.
Last updated