Actions31
- Company Actions
- Company (Related) Actions
- Data (Advanced) Actions
- Enrich Actions
- Live Web RAG Actions
- LLM Template Actions
- Other Data Actions
- Validation & Cleansing Actions
Overview
The node integrates with the Bedrijfsdata API to retrieve detailed company information based on a unique company identifier. Specifically, the "Company" resource with the "Get" operation fetches a single company's profile using its Bedrijfsdata.nl ID. This is useful for workflows that require up-to-date company data such as credit usage, registration details, or other business insights.
Common scenarios include:
- Enriching CRM records with verified company data.
- Automating due diligence by retrieving official company profiles.
- Integrating company data into reporting or analytics pipelines.
Example: Given a Bedrijfsdata.nl ID, the node fetches the corresponding company profile, optionally including detailed financial and credit information if requested.
Properties
| Name | Meaning |
|---|---|
| Bedrijfsdata.nl ID | The unique identifier of the company in the Bedrijfsdata.nl system. Required to specify which company to retrieve. |
| Detailed Output | Boolean flag indicating whether to include additional detailed information such as credit usage. If enabled, the output requires further parsing. |
Output
The node outputs JSON data representing the company profile retrieved from the Bedrijfsdata API. The structure includes standard company fields such as name, address, registration details, and optionally extended details like credit usage when the "Detailed Output" option is enabled.
If detailed output is requested, the response may contain nested or complex data structures requiring additional processing downstream.
No binary data output is produced by this operation.
Dependencies
- Requires an active connection to the Bedrijfsdata API via an API key credential configured in n8n.
- The node makes HTTP GET requests to the endpoint
/companieswith query parameters including the company ID and detail flags. - No additional external dependencies are required beyond the configured API access.
Troubleshooting
- Missing or invalid Bedrijfsdata.nl ID: The node requires a valid company ID; ensure this is provided and correctly formatted.
- API authentication errors: Verify that the API key credential is correctly set up and has sufficient permissions.
- Unexpected API responses: If the API returns errors or unexpected data, check network connectivity and API status.
- Parsing detailed output: When "Detailed Output" is enabled, the response format may be more complex; ensure your workflow handles nested JSON appropriately.
- Timeouts or rate limits: The Bedrijfsdata API may enforce rate limits; consider adding retry logic or handling rate limit errors gracefully.