Actions8
Overview
This node integrates with the TRBO API to perform various operations related to managing and searching links and public profiles. Specifically, the Search operation allows users to search public profiles and links using a query string and optional additional query parameters.
Common scenarios where this node is beneficial include:
- Discovering publicly available profiles or links based on keywords or criteria.
- Filtering public data from the TRBO platform for analytics or display purposes.
- Automating searches to monitor public content changes or trends.
For example, you could use this node to search for all public profiles containing a specific keyword or to find links that match certain metadata filters.
Properties
| Name | Meaning |
|---|---|
| Search Query | A string query used to search public profiles and links. |
| Query Parameters | Additional key-value pairs to refine the search request. Multiple parameters can be added. |
The Query Parameters property supports multiple entries, each consisting of:
- Key: The name of the query parameter.
- Value: The value for that parameter.
These parameters are appended as URL query parameters in the API request.
Output
The node outputs JSON data representing the search results returned by the TRBO API. This typically includes arrays of matching public profiles and/or links along with their associated metadata.
No binary data output is produced by this operation.
Dependencies
- Requires an API authentication token credential configured in n8n to access the TRBO API.
- The base URL for API requests is
https://trbo.link/api. - The node sends HTTP GET requests to the
/public/searchendpoint with appropriate query parameters.
Troubleshooting
- Empty Results: If the search returns no results, verify that the search query string is correct and that any additional query parameters are valid according to the TRBO API documentation.
- Authentication Errors: Ensure that the API authentication token is correctly set up and has sufficient permissions.
- Invalid Query Parameters: Passing unsupported or malformed query parameters may cause errors or unexpected results. Double-check keys and values.
- Network Issues: Connectivity problems or API downtime will prevent successful searches; check network status and API availability.
Links and References
- TRBO API Documentation (for detailed information on endpoints and parameters)
- n8n Documentation on HTTP Request Node (for understanding how API calls are made)