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.
Set the following values in your Make (Integromat) configuration:
// 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
}Verify your setup by running this command:
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"
}'Contact our integrations team at support@nextapi.dev or check the full API documentation.