All Integrations

Make (Integromat) Integration

Build automated video generation scenarios in Make. Use the HTTP module to call the NextAPI endpoint and route the generated video through your automation pipeline.

Configuration

Set the following values in your Make (Integromat) configuration:

json
// Make HTTP Module Configuration
{
  "url": "https://api.nextapi.top/v1/video/generations",
  "method": "POST",
  "headers": [
    {
      "name": "Authorization",
      "value": "Bearer {{connection.apiKey}}"
    },
    {
      "name": "Content-Type",
      "value": "application/json"
    }
  ],
  "body": {
    "model": "seedance-2.0-pro",
    "prompt": "{{1.prompt}}",
    "duration_seconds": 6,
    "resolution": "1080p"
  },
  "parseResponse": true
}

Setup Steps

  1. 1In Make, create a new scenario and add an HTTP → "Make a request" module.
  2. 2Set the URL to https://api.nextapi.top/v1/video/generations and method to POST.
  3. 3Add the Authorization header with your Bearer token.
  4. 4Set the body type to JSON and configure the request body with model, prompt, duration_seconds, and resolution.
  5. 5Enable "Parse response" to work with the JSON output.
  6. 6Connect downstream modules to process the video URL from the response data.

Test with cURL

Verify your setup by running this command:

bash
curl -X POST https://api.nextapi.top/v1/video/generations \
  -H "Authorization: Bearer $NEXTAPI_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "seedance-2.0-pro",
    "prompt": "northern lights dancing over a frozen lake",
    "duration_seconds": 6,
    "resolution": "1080p"
  }'

Need help?

Contact our integrations team at support@nextapi.dev or check the full API documentation.