RenderGod
    DownloadFeaturesPricingDocs
    DownloadFeaturesPricingDocs
    Blender Render Queue - Complete GuideMultiple Queue and Duplication FeaturesUncrash Render Feature - Advanced Crash RecoveryAuto Bake Physics FeatureSmart Export Path Feature - Automatic Folder OrganizationBadge Display Feature - Queue Information TagsAPI Reference
    Expert Tools

    API Reference

    Technical documentation for integrating with RenderGod's internal systems.

    API Reference

    Technical documentation for integrating with RenderGod's internal systems.

    Overview

    RenderGod provides a set of internal APIs for advanced users and developers to extend its functionality or automate workflows further.

    Core endpoints (Conceptual)

    Get Project Status

    GET /api/project/:id/status Returns the current rendering status of a specific project.

    Trigger Render

    POST /api/project/:id/render Starts the rendering process for a project with the given configuration.

    List Render Nodes

    GET /api/nodes Returns a list of available rendering nodes in your local network.


    [!WARNING] These APIs are currently in internal beta and may change without notice. Use with caution in production environments.

    Integration Examples

    // Example: Checking project status
    const response = await fetch('/api/project/my-awesome-render/status');
    const data = await response.json();
    console.log(`Current progress: ${data.progress}%`);
    PreviousBadge Display Feature - Queue Information TagsNextAction When Done Settings
    RenderGod Logo

    RenderGod

    Revolutionizing 3D rendering with smart automation and crash recovery.

    Product

    • Features
    • Download
    • Docs
    • Pricing

    Company

    • About
    • Terms of Service
    • Blog
    • Contact

    Resources

    • Help Center
    • API
    • Status
    • Community

    © 2026 RenderGod. All rights reserved.

    • Terms and Conditions
    • Privacy Policy

    On this page

    API ReferenceOverviewCore endpoints (Conceptual)Get Project StatusTrigger RenderList Render NodesIntegration Examples