[
  {
    "url": "https://aihubmix.com/v1/videos",
    "method": "POST",
    "headers": {
      "Authorization": "Bearer {{connection.API_KEY}}",
      "Content-Type": "application/json",
      "Accept": "application/json"
    },
    "body": {
      "model": "{{parameters.model}}",
      "prompt": "{{parameters.prompt}}",
      "ratio": "{{parameters.ratio}}",
      "duration": "{{parameters.duration}}",
      "watermark": "{{parameters.watermark}}"
    },
    "response": {
      "temp": {
        "videoId": "{{body.id}}"
      },
      "output": null
    },
    "log": {
      "sanitize": [
        "request.headers.Authorization"
      ],
      "output": [
        "body.id"
      ]
    }
  },
  {
    "url": "https://aihubmix.com/v1/videos/{{temp.videoId}}",
    "method": "GET",
    "headers": {
      "Authorization": "Bearer {{connection.API_KEY}}",
      "Accept": "application/json"
    },
    "repeat": {
      "condition": "{{body.status == 'queued' || body.status == 'in_progress'}}",
      "delay": 15000,
      "limit": 150
    },
    "response": {
      "output": {
        "videoId": "{{temp.videoId}}",
        "status": "{{body.status}}",
        "progress": "{{body.progress}}",
        "contentUrl": "https://aihubmix.com/v1/videos/{{temp.videoId}}/content?variant=video",
        "errorMessage": "{{body.error.message}}"
      }
    },
    "log": {
      "sanitize": [
        "request.headers.Authorization"
      ],
      "output": [
        "body.status"
      ]
    }
  }
]
