Actions56
- Health Actions
- Project Actions
- Score Actions
- Characters Actions
- Environments Actions
- Scenes Actions
- Visuals Actions
- Visual Voiceover Actions
- Visual Image Actions
- Visual Video Actions
- Visual Sound Actions
- Video Actions
Overview
This node integrates with the AdBlast API to retrieve all scenes associated with a specified project. It is useful for users who want to programmatically access and manage scene data within their AdBlast projects, such as fetching scene lists for reporting, automation, or further processing in workflows.
A practical example would be a marketing team automating the retrieval of all scenes from a campaign project to analyze performance or update content dynamically.
Properties
| Name | Meaning |
|---|---|
| Authentication Method | Choose how to authenticate: "Predefined Credentials" (use saved API credentials) or "Dynamic API Key" (enter API key dynamically using expressions). |
| AdBlast Base URL | The base URL for the AdBlast API. Required only if using Dynamic API Key authentication. Default is https://dev.adblast.ai. |
| API Key | The API key for authenticating requests to AdBlast. Required only if using Dynamic API Key authentication. Can use expressions to set dynamically. |
| Project Id | The unique identifier of the project whose scenes you want to retrieve. This is required to specify the scope of the request. |
Output
The node outputs JSON data containing the list of scenes retrieved from the specified project in AdBlast. Each item in the output corresponds to a scene object as returned by the AdBlast API. The exact structure depends on the API response but typically includes scene metadata such as IDs, names, and other relevant attributes.
No binary data output is produced by this node.
Dependencies
- Requires access to the AdBlast API.
- Requires an API key credential for authentication, either stored in n8n credentials or provided dynamically.
- The base URL defaults to
https://dev.adblast.aibut can be customized when using dynamic authentication. - No additional external dependencies beyond standard HTTP requests.
Troubleshooting
- Authentication errors: Ensure that the API key is valid and has sufficient permissions. If using predefined credentials, verify they are correctly configured in n8n. For dynamic keys, confirm the expression resolves properly.
- Invalid Project Id: If the project ID does not exist or is incorrect, the API will return an error or empty results. Double-check the project ID value.
- Network issues: Verify network connectivity to the AdBlast API base URL, especially if using a custom URL.
- API rate limits: If many requests are made in a short time, the API might throttle requests. Implement retry logic or reduce request frequency.
Links and References
- AdBlast API Documentation (assumed based on default URL)
- n8n documentation on HTTP Request Node for understanding API integrations
- General API authentication best practices