Model
Get List Model
Get list model
Headers
Name
Type
Description
[
{
"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)Last updated