POST
/
submit_job
curl --request POST \
  --url http://sequencer.heurist.xyz/submit_job \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "job_id": "heurist-sdk-job-C254845d2522",
  "model_input": {
    "SD": {
      "prompt": "A beautiful landscape with mountains and a river",
      "neg_prompt": "Avoid any signs of human presence",
      "num_iterations": 20,
      "width": 1024,
      "height": 512,
      "guidance_scale": 7.5,
      "seed": -1
    }
  },
  "model_id": "HeuristLogo",
  "deadline": 60,
  "priority": 1
}'
{
  "image_url": "<string>"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json

JSON payload to specify the image generation job details

The body is of type object.

Response

200
application/json

Job successfully submitted

The response is of type object.