GetTranscribe icon

GetTranscribe

Interact with GetTranscribe API to transcribe videos from social media platforms

Actions7

Overview

This node interacts with the GetTranscribe API, specifically to manage folders related to transcription projects. The Folder - List operation retrieves a list of all folders available in the user's GetTranscribe account.

Typical use cases include:

  • Organizing transcriptions by folders and needing to retrieve the folder structure.
  • Displaying or processing folder metadata before creating or updating transcriptions.
  • Automating workflows that require fetching folder lists for selection or reporting purposes.

For example, you might use this node to fetch all folders so you can present them as options in a UI or to filter transcriptions by folder in subsequent steps.

Properties

Name Meaning
Limit Max number of results to return

The Limit property controls how many folder records the API returns in one call. It must be at least 1, with a default of 50.

Output

The node outputs an array of folder objects in the json field. Each object represents a folder with properties such as its ID, name, parent folder ID (if any), and possibly other metadata returned by the API.

The output structure is a JSON array where each element corresponds to a folder entity retrieved from the GetTranscribe service.

No binary data is produced by this operation.

Dependencies

  • Requires an active connection to the GetTranscribe API.
  • Needs an API authentication token configured in n8n credentials to authorize requests.
  • The base URL used for API calls is https://api.gettranscribe.ai.

Troubleshooting

  • Common issues:

    • Authentication errors if the API key credential is missing or invalid.
    • Network connectivity problems preventing access to the GetTranscribe API.
    • Exceeding rate limits imposed by the API service.
  • Error messages:

    • Errors returned from the API will be surfaced, e.g., "Unauthorized" if credentials are incorrect.
    • If the node fails and "Continue On Fail" is disabled, execution stops; enabling it allows partial success with error details in output.
  • Resolutions:

    • Verify that the API key credential is correctly set up in n8n.
    • Check network connectivity and firewall settings.
    • Adjust the "Limit" parameter if too many results cause timeouts or performance issues.

Links and References

Discussion