TRBO icon

TRBO

Interact with the TRBO API

Overview

The node interacts with the TRBO API to manage and retrieve information about links associated with a user profile. Specifically, the "Get Links" operation fetches a list of links owned by the authenticated profile. This is useful for workflows that need to display, analyze, or further process the user's existing links.

Common scenarios include:

  • Automatically retrieving all links for reporting or analytics.
  • Syncing link data with other systems.
  • Filtering or processing links based on custom query parameters.

For example, you might use this node to get all your profile's links and then filter them in n8n to find those matching certain criteria or to update them in bulk.

Properties

Name Meaning
Query Parameters A collection of key-value pairs to customize the GET request query string parameters. You can add multiple parameters to filter or modify the results returned by the API.

Output

The node outputs JSON data representing the list of links retrieved from the TRBO API. Each item in the output corresponds to a link object with its associated properties as returned by the API.

If the API supports binary data related to links (e.g., images or files), it would be included in the binary output, but this operation primarily returns JSON data describing links.

Dependencies

  • Requires an API key credential for authenticating with the TRBO API.
  • The node sends HTTP requests to https://trbo.link/api.
  • No additional environment variables are needed beyond the API authentication setup.

Troubleshooting

  • Empty or missing results: Ensure that the API key has the correct permissions and that the profile actually owns links.
  • Invalid query parameters: If custom query parameters are malformed or unsupported by the API, the request may fail or return unexpected results. Double-check parameter keys and values.
  • Authentication errors: Verify that the API key credential is correctly configured and valid.
  • Network issues: Confirm network connectivity to https://trbo.link/api.

Links and References

Discussion