Variation
POST
https://api.genartapi.com/imageToImage
Parameters
NAME | TYPE | REQUIRED | DESCRIPTION |
---|---|---|---|
prompt | string | true | Instructions to influence the generated image |
imageUrl | string | true | url of the image that you want to describe |
Response Code
RESPONSE CODE | DESCRIPTION |
---|---|
200: OK | Successful Response |
400: Bad Request | The request data format is incorrect |
401: Unauthorized | The API key is incorrect or expired |
500: Internal Server Error | Service is experiencing an error |
Request Example:
Make sure you also passed servier_id, channel_id, discord_token and (our) apiKey.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
const axios = require("axios")
const config = {
method: "post",
url: "https://api.genartapi.com/imageToImage?prompt=a%20cyberpunk%20city&imageUrl=https://graduate.northeastern.edu/resources/wp-content/uploads/sites/4/2019/09/iStock-1150384596-2.jpg",
headers: {
"Content-Type": "application/json",
"Authorization": "Bearer <your-midjourney-api-key>",
"server_id": "<servier_id>",
"channel_id": "<channel_id>",
"discord_token": "<discord_token>",
},
}
axios(config)
.then(function (response) {
console.log(JSON.stringify(response.data))
})
.catch(function (error) {
console.log(error)
})
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
import requests
url = "https://api.genartapi.com/imageToImage?prompt=a%20cyberpunk%20city&imageUrl=https://graduate.northeastern.edu/resources/wp-content/uploads/sites/4/2019/09/iStock-1150384596-2.jpg"
headers = {
"Content-Type": "application/json",
"Authorization": "Bearer <your-midjourney-api-key>",
"server_id": "<servier_id>",
"channel_id": "<channel_id>",
"discord_token": "<discord_token>",
}
response = requests.post(url, headers=headers, json=data)
if response.status_code == 200:
print(response.json())
else:
print(response.text)
three!
Response Example:
you can get generated images by using uri or proxy_url
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"content": "[7413988501] <https://s.mj.run/qIPFnpL46Cw> a cyberpunk city",
"id": "1239440027558088704",
"uri": "https://cdn.discordapp.com/attachments/1235070628952805379/1239440026962624542/bytefishstudios_7413988501_f7289898-c3ff-48f8-89df-bcec5d44a3ea.png?ex=6642edfa&is=66419c7a&hm=17fd86e41e981682d5da91b33323f0e1a9124187abe2a7c38546d0ed291df61b&",
"proxy_url": "https://media.discordapp.net/attachments/1235070628952805379/1239440026962624542/bytefishstudios_7413988501_f7289898-c3ff-48f8-89df-bcec5d44a3ea.png?ex=6642edfa&is=66419c7a&hm=17fd86e41e981682d5da91b33323f0e1a9124187abe2a7c38546d0ed291df61b&",
"flags": 0,
"hash": "f7289898-c3ff-48f8-89df-bcec5d44a3ea",
"progress": "done",
"options": [
{
"type": 2,
"style": 2,
"label": "U1",
"custom": "MJ::JOB::upsample::1::f7289898-c3ff-48f8-89df-bcec5d44a3ea"
},
{
"type": 2,
"style": 2,
"label": "U2",
"custom": "MJ::JOB::upsample::2::f7289898-c3ff-48f8-89df-bcec5d44a3ea"
},
{
"type": 2,
"style": 2,
"label": "U3",
"custom": "MJ::JOB::upsample::3::f7289898-c3ff-48f8-89df-bcec5d44a3ea"
},
{
"type": 2,
"style": 2,
"label": "U4",
"custom": "MJ::JOB::upsample::4::f7289898-c3ff-48f8-89df-bcec5d44a3ea"
},
{
"type": 2,
"style": 2,
"label": "🔄",
"custom": "MJ::JOB::reroll::0::f7289898-c3ff-48f8-89df-bcec5d44a3ea::SOLO"
},
{
"type": 2,
"style": 2,
"label": "V1",
"custom": "MJ::JOB::variation::1::f7289898-c3ff-48f8-89df-bcec5d44a3ea"
},
{
"type": 2,
"style": 2,
"label": "V2",
"custom": "MJ::JOB::variation::2::f7289898-c3ff-48f8-89df-bcec5d44a3ea"
},
{
"type": 2,
"style": 2,
"label": "V3",
"custom": "MJ::JOB::variation::3::f7289898-c3ff-48f8-89df-bcec5d44a3ea"
},
{
"type": 2,
"style": 2,
"label": "V4",
"custom": "MJ::JOB::variation::4::f7289898-c3ff-48f8-89df-bcec5d44a3ea"
}
],
"width": 2048,
"height": 2048,
"taskId": "Wzc0MTM5ODg1MDFdXzEyMzk0NDAwMjc1NTgwODg3MDRfMF9mNzI4OTg5OC1jM2ZmLTQ4ZjgtODlkZi1iY2VjNWQ0NGEzZWE="
}
three!