Actions8
Overview
The Tomba node's "Autocomplete" operation allows users to find company names and retrieve associated logo and domain information by providing a partial or full company or website name. This is particularly useful for enriching datasets, auto-completing user input fields, or preparing leads for further processing in sales and marketing automation workflows.
Practical examples:
- Auto-suggesting company names as a user types in a form.
- Enriching CRM records with company logos and domains based on partial names.
- Preparing lists of companies for outreach by quickly finding their official domains.
Properties
| Name | Meaning |
|---|---|
| Query | Name of the company or website (required). Used to search for matching companies and retrieve their logo and domain information. |
Output
The output is an array of objects, each representing a suggested company/domain match. Each object typically contains:
- Company name
- Domain
- Logo URL
Note: The exact structure depends on the Tomba API response for /domains-suggestion/, but you can expect fields relevant to company identification and branding.
Dependencies
- External Service: Requires access to the Tomba API.
- API Key: You must configure Tomba API credentials in n8n under the credential type
tombaApi.
Troubleshooting
Common issues:
- Invalid or missing API key: If your credentials are not set up correctly, requests will fail. Ensure your Tomba API key is configured in n8n.
- Empty results: If the query does not match any known companies or websites, the output array will be empty.
- API rate limits: Exceeding Tomba's API usage limits may result in errors or throttling.
Error messages:
error: { ... }in the output: If an error occurs and "Continue On Fail" is enabled, the node outputs an object with anerrorfield containing details from the Tomba API. Check the error message for specifics (e.g., invalid query, authentication failure).