Skip to main content
Even the best-built templates can fail - especially when working with automation, dynamic data, and After Effects. This guide explains how to detect, interpret, and fix common job errors in Nexrender Cloud.

Where Errors Appear

When a render job fails, the system sets its status to "error". You can detect this in two ways:

Webhook Delivery

If you’ve defined a webhook, the error will be delivered as a POST request to your endpoint:

Manual Polling

Poll GET /jobs/{id} and check the status field:
When the job has failed, the response will include "status": "error" and a stats.error string describing what went wrong.

Common Causes of Render Failures

Most errors are caused by bad data or structural mismatches between the template and the job payload.

Debugging Strategy

Inspect the Template First

Use GET /templates/{id} to see available compositions, layer names, and properties before submitting a job:
This lets you verify exact layer names and composition names before your job runs.

Use Preview Mode

Render the job with "preview": true to get a fast, low-resolution output that reveals most structural issues before committing to a full render:
Preview mode catches missing layers, layout bugs, and expression crashes cheaply.

Isolate with a Minimal Payload

Temporarily reduce your job to the simplest possible payload:
  • Static text only
  • No image or audio layers
  • Known-good composition name
Once that succeeds, reintroduce dynamic elements one at a time until you find the failure point.

Best Practices for Stability

  • Fetch template metadata via GET /templates/{id} before building any job payload
  • Use descriptive, unique layerName values and document them alongside the template
  • Preload all fonts via the Fonts API before submitting jobs that reference them
  • Validate all asset URLs return 200 OK before sending a render job
  • Wrap dynamic layers with fallback expressions inside After Effects
  • Make your webhook handler idempotent and log every incoming payload for auditability