Mystic LoRA Styles - Train custom style
curl --request POST \
--url https://api.magnific.com/v1/ai/loras/styles \
--header 'Content-Type: application/json' \
--header 'x-magnific-api-key: <api-key>' \
--data '
{
"name": "my-awesome-style",
"description": "string",
"quality": "high",
"images": [
"string",
"string",
"string",
"string",
"string",
"string",
"string",
"string"
],
"webhook_url": "https://my-webhook-url.com/endpoint"
}
'import requests
url = "https://api.magnific.com/v1/ai/loras/styles"
payload = {
"name": "my-awesome-style",
"description": "string",
"quality": "high",
"images": ["string", "string", "string", "string", "string", "string", "string", "string"],
"webhook_url": "https://my-webhook-url.com/endpoint"
}
headers = {
"x-magnific-api-key": "<api-key>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {'x-magnific-api-key': '<api-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({
name: 'my-awesome-style',
description: 'string',
quality: 'high',
images: ['string', 'string', 'string', 'string', 'string', 'string', 'string', 'string'],
webhook_url: 'https://my-webhook-url.com/endpoint'
})
};
fetch('https://api.magnific.com/v1/ai/loras/styles', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.magnific.com/v1/ai/loras/styles",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'name' => 'my-awesome-style',
'description' => 'string',
'quality' => 'high',
'images' => [
'string',
'string',
'string',
'string',
'string',
'string',
'string',
'string'
],
'webhook_url' => 'https://my-webhook-url.com/endpoint'
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json",
"x-magnific-api-key: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.magnific.com/v1/ai/loras/styles"
payload := strings.NewReader("{\n \"name\": \"my-awesome-style\",\n \"description\": \"string\",\n \"quality\": \"high\",\n \"images\": [\n \"string\",\n \"string\",\n \"string\",\n \"string\",\n \"string\",\n \"string\",\n \"string\",\n \"string\"\n ],\n \"webhook_url\": \"https://my-webhook-url.com/endpoint\"\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("x-magnific-api-key", "<api-key>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://api.magnific.com/v1/ai/loras/styles")
.header("x-magnific-api-key", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"name\": \"my-awesome-style\",\n \"description\": \"string\",\n \"quality\": \"high\",\n \"images\": [\n \"string\",\n \"string\",\n \"string\",\n \"string\",\n \"string\",\n \"string\",\n \"string\",\n \"string\"\n ],\n \"webhook_url\": \"https://my-webhook-url.com/endpoint\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.magnific.com/v1/ai/loras/styles")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["x-magnific-api-key"] = '<api-key>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"name\": \"my-awesome-style\",\n \"description\": \"string\",\n \"quality\": \"high\",\n \"images\": [\n \"string\",\n \"string\",\n \"string\",\n \"string\",\n \"string\",\n \"string\",\n \"string\",\n \"string\"\n ],\n \"webhook_url\": \"https://my-webhook-url.com/endpoint\"\n}"
response = http.request(request)
puts response.read_body{
"data": {
"generated": [],
"task_id": "046b6c7f-0b8a-43b9-b35d-6489e6daee91",
"status": "IN_PROGRESS"
}
}Mystic
Mystic LoRA Styles - Train custom style
Create you own custom style using LoRAs training
For now you can check the status of the training calling v1/ai/loras. We are working on it
POST
/
v1
/
ai
/
loras
/
styles
Mystic LoRA Styles - Train custom style
curl --request POST \
--url https://api.magnific.com/v1/ai/loras/styles \
--header 'Content-Type: application/json' \
--header 'x-magnific-api-key: <api-key>' \
--data '
{
"name": "my-awesome-style",
"description": "string",
"quality": "high",
"images": [
"string",
"string",
"string",
"string",
"string",
"string",
"string",
"string"
],
"webhook_url": "https://my-webhook-url.com/endpoint"
}
'import requests
url = "https://api.magnific.com/v1/ai/loras/styles"
payload = {
"name": "my-awesome-style",
"description": "string",
"quality": "high",
"images": ["string", "string", "string", "string", "string", "string", "string", "string"],
"webhook_url": "https://my-webhook-url.com/endpoint"
}
headers = {
"x-magnific-api-key": "<api-key>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {'x-magnific-api-key': '<api-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({
name: 'my-awesome-style',
description: 'string',
quality: 'high',
images: ['string', 'string', 'string', 'string', 'string', 'string', 'string', 'string'],
webhook_url: 'https://my-webhook-url.com/endpoint'
})
};
fetch('https://api.magnific.com/v1/ai/loras/styles', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.magnific.com/v1/ai/loras/styles",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'name' => 'my-awesome-style',
'description' => 'string',
'quality' => 'high',
'images' => [
'string',
'string',
'string',
'string',
'string',
'string',
'string',
'string'
],
'webhook_url' => 'https://my-webhook-url.com/endpoint'
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json",
"x-magnific-api-key: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.magnific.com/v1/ai/loras/styles"
payload := strings.NewReader("{\n \"name\": \"my-awesome-style\",\n \"description\": \"string\",\n \"quality\": \"high\",\n \"images\": [\n \"string\",\n \"string\",\n \"string\",\n \"string\",\n \"string\",\n \"string\",\n \"string\",\n \"string\"\n ],\n \"webhook_url\": \"https://my-webhook-url.com/endpoint\"\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("x-magnific-api-key", "<api-key>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://api.magnific.com/v1/ai/loras/styles")
.header("x-magnific-api-key", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"name\": \"my-awesome-style\",\n \"description\": \"string\",\n \"quality\": \"high\",\n \"images\": [\n \"string\",\n \"string\",\n \"string\",\n \"string\",\n \"string\",\n \"string\",\n \"string\",\n \"string\"\n ],\n \"webhook_url\": \"https://my-webhook-url.com/endpoint\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.magnific.com/v1/ai/loras/styles")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["x-magnific-api-key"] = '<api-key>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"name\": \"my-awesome-style\",\n \"description\": \"string\",\n \"quality\": \"high\",\n \"images\": [\n \"string\",\n \"string\",\n \"string\",\n \"string\",\n \"string\",\n \"string\",\n \"string\",\n \"string\"\n ],\n \"webhook_url\": \"https://my-webhook-url.com/endpoint\"\n}"
response = http.request(request)
puts response.read_body{
"data": {
"generated": [],
"task_id": "046b6c7f-0b8a-43b9-b35d-6489e6daee91",
"status": "IN_PROGRESS"
}
}Authorizations
Your Magnific API key. Required for authentication. Learn how to obtain an API key
Body
application/json
Name of the LoRA style. This name will be used to identify the style in the system.
Pattern:
^[a-zA-Z0-9-_]+$Quality of the LoRA style
Available options:
medium, high, ultra List of images to train the LoRA style
Required array length:
6 - 20 elementsUrl of the image to train the LoRA style
Description of the LoRA style
Webhook URL to notify the user when the task is completed
Response
OK - The request has succeeded and the style is processing
Show child attributes
Show child attributes
Example:
{
"task_id": "046b6c7f-0b8a-43b9-b35d-6489e6daee91",
"status": "CREATED",
"generated": [
"https://openapi-generator.tech",
"https://openapi-generator.tech"
]
}
Was this page helpful?
⌘I