JoggAI icon

JoggAI

Interact with the JoggAI API to create and manage AI videos

Overview

This node integrates with the JoggAI API to manage AI-generated video content. Specifically, the "Video" resource with the "Get" operation allows users to retrieve detailed information about a specific video by providing its unique Video ID. This is useful in workflows where you need to fetch metadata or status of an AI-created video for further processing, reporting, or conditional logic.

Practical examples:

  • Automatically fetching video details after creation to verify completion status.
  • Retrieving video metadata to display in dashboards or send notifications.
  • Using video information to trigger subsequent workflow steps like publishing or archiving.

Properties

Name Meaning
Video ID The unique identifier of the video to retrieve information for. Example: 30062015eb6742acadf68e17af2937d3

Output

The node outputs JSON data containing the retrieved video information from the JoggAI API. This typically includes metadata such as video status, duration, creation date, and other relevant attributes describing the video.

If the node supports binary data output (not explicitly shown here), it would represent the actual video file or related media content. However, based on the provided code and context, the output focuses on JSON metadata.

Dependencies

  • Requires an active connection to the JoggAI API via an API key credential configured in n8n.
  • Network access to the JoggAI service endpoint.
  • Proper configuration of the node's credentials to authenticate API requests.

Troubleshooting

  • Common issues:

    • Invalid or missing Video ID will cause the API request to fail.
    • Expired or incorrect API authentication token may result in authorization errors.
    • Network connectivity problems can prevent successful API calls.
  • Error messages:

    • "request failed: <error message>" indicates an issue during the API call. Check the error message for specifics.
    • If the node is set to continue on failure, errors are returned as part of the output JSON with an error field describing the problem.
  • Resolutions:

    • Verify that the Video ID is correct and corresponds to an existing video.
    • Ensure the API key credential is valid and has necessary permissions.
    • Confirm network connectivity and API endpoint availability.

Links and References

Discussion