Data Gouv icon

Data Gouv

Actions2

Overview

The node integrates with the Data Gouv API to perform data searches related to public French datasets. Specifically, for the Company resource and the Search Company operation, it allows users to search for companies based on a search string. This is useful in scenarios such as enriching contact databases, verifying company information, or automating business intelligence workflows.

For example, you can input a company name or partial name as the search value, and the node will return matching companies from the Data Gouv database, supporting pagination to handle large result sets.

Properties

Name Meaning
Search Value The string used to search for companies. This could be a full or partial company name.
Page The page number of results to retrieve (minimum 1).
Result per page Number of results to return per page (minimum 1, maximum 100).

Output

The output is an array of JSON objects representing companies that match the search criteria. Each object contains company details as returned by the Data Gouv API. The exact structure depends on the API response but typically includes fields like company name, address, identification numbers, and other metadata.

No binary data output is produced by this operation.

Dependencies

  • Requires access to the Data Gouv API.
  • The node internally uses connectors (ApiCompanyConnector) to interact with the API.
  • Proper API authentication or credentials may be required (not detailed in the provided code).
  • No additional environment variables or external services are explicitly mentioned in the source.

Troubleshooting

  • Empty Results: If no companies are returned, verify that the "Search Value" is correctly specified and matches existing entries.
  • Pagination Issues: Ensure the "Page" and "Result per page" values are within allowed ranges (page ≥ 1, results per page between 1 and 100).
  • API Errors: Network issues or invalid credentials may cause errors. Check connectivity and ensure valid API authentication is configured.
  • Unexpected Output Structure: Changes in the Data Gouv API response format might affect output parsing; verify against the latest API documentation.

Links and References

Discussion