Poll Results

Use this endpoint to check the status of any async generation (image or video).

GET https://api.nova.ai/api/v1/model/prediction/{prediction_id}

Response

statusstring

"generating" | "success" | "failed"

results[].data[].outputs[0].urlstring

URL of the generated output. Available for 1–7 days.

json
{
  "id": "pred_01jwxyz",
  "status": "success",
  "results": [
    {
      "data": [
        {
          "outputs": [
            {
              "url": "https://cdn.nova.ai/outputs/pred_01jwxyz.png"
            }
          ]
        }
      ]
    }
  ]
}