Overview
This node integrates with the GetTranscribe API to manage video transcriptions from popular social media platforms such as Instagram, TikTok, and YouTube. Specifically, the Transcription - List operation allows users to retrieve a list of existing transcriptions with optional filtering and pagination.
Common scenarios where this node is beneficial include:
- Automatically fetching recent transcriptions for further processing or analysis.
- Organizing or displaying transcriptions filtered by platform or folder.
- Integrating transcription data into workflows for content management or reporting.
For example, a user might list the last 50 transcriptions from YouTube videos stored in a specific folder to generate summaries or captions.
Properties
| Name | Meaning |
|---|---|
| Limit | Max number of transcription results to return (minimum 1). |
| Skip | Number of transcriptions to skip (useful for pagination). |
| Folder ID | Filter transcriptions by a specific folder ID (optional). |
| Platform | Filter transcriptions by platform. Options: All (no filter), Instagram, TikTok, YouTube. |
Output
The node outputs an array of transcription objects in the json field. Each object represents a transcription record retrieved from the GetTranscribe API. The structure typically includes metadata such as transcription ID, associated video URL, platform, folder ID, creation date, and transcription text or status.
No binary data output is produced by this operation.
Dependencies
- Requires an API key credential for authenticating with the GetTranscribe API.
- The node makes HTTP requests to
https://api.gettranscribe.aiendpoints. - Proper configuration of the API key credential in n8n is necessary for successful requests.
Troubleshooting
Common issues:
- Invalid or missing API key credential will cause authentication failures.
- Providing an invalid folder ID or platform filter may result in empty results.
- Exceeding API rate limits could cause request failures.
Error messages:
- Authentication errors typically indicate issues with the API key; verify the credential setup.
- Validation errors may occur if
limitis set below 1 or if parameters are malformed. - Network or API errors should be retried or checked for service availability.
Links and References
- GetTranscribe API Documentation (hypothetical link)
- n8n HTTP Request Node documentation for understanding request options: https://docs.n8n.io/nodes/n8n-nodes-base.httpRequest/