Connect ComfyUI to NextAPI using a trusted HTTP/API request custom node. A packaged NextAPI custom node is in development and not yet shipped — the verified path today is through ComfyUI's generic HTTP request nodes.
Set the following values in your ComfyUI configuration:
// ComfyUI HTTP/API Request Node Configuration
{
"create": {
"method": "POST",
"url": "https://api.nextapi.top/v1/videos",
"headers": {
"Authorization": "Bearer sk_...",
"Content-Type": "application/json"
},
"body": {
"model": "seedance-2.0-pro",
"input": {
"prompt": "your prompt here",
"duration_seconds": 6,
"resolution": "1080p"
}
}
},
"poll": {
"method": "GET",
"url": "https://api.nextapi.top/v1/videos/{id}",
"headers": {
"Authorization": "Bearer sk_..."
}
}
}Verify your setup by running this command with your real sk_live_ key:
$NEXTAPI_KEY with your actual key from app.nextapi.top.curl -X POST https://api.nextapi.top/v1/videos \
-H "Authorization: Bearer $NEXTAPI_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "seedance-2.0-pro",
"input": {
"prompt": "ink spreading through water in slow motion",
"duration_seconds": 6,
"resolution": "1080p"
}
}'Contact our integrations team at support@nextapi.top or check the full API documentation.