JetNet Tool icon

JetNet Tool

Access JetNet aviation data for AI Agents

Overview

This node integrates with the JetNet aviation data service to retrieve detailed company-related information. Specifically, for the Company resource and the Get Identification operation, it fetches identification data about a company from the JetNet database.

Use cases include:

  • Accessing verified company identification details for aviation industry entities.
  • Enriching datasets with official company identifiers and metadata.
  • Supporting AI agents or workflows that require authoritative company information in aviation contexts.

For example, you might use this node to obtain the official identification data of an aviation company by providing its unique company ID, enabling further processing or decision-making based on accurate company profiles.

Properties

Name Meaning
Tool Description Choose how to set the tool's description:
- Set Automatically: The description is auto-generated based on the selected resource and operation.
- Set Manually: You provide a custom description explaining what the tool does.
Description A text field to manually describe the tool’s purpose. This helps language models understand the tool better. Only shown if "Set Manually" is selected for Tool Description. Default: Access JetNet aviation industry data including aircraft specifications, company information, contact details, and market intelligence

Output

The node outputs a JSON object with the following structure:

{
  "success": true,
  "resource": "company",
  "operation": "getIdentification",
  "data": { /* Company identification data returned from JetNet API */ },
  "timestamp": "ISO 8601 timestamp"
}
  • success: Boolean indicating whether the API call was successful.
  • resource: The resource type requested ("company").
  • operation: The operation performed ("getIdentification").
  • data: Contains the detailed company identification information as returned by the JetNet API.
  • timestamp: The time when the response was generated.

If an error occurs, the output will be:

{
  "success": false,
  "error": "Error message describing the problem",
  "resource": "company",
  "operation": "getIdentification",
  "timestamp": "ISO 8601 timestamp"
}

The node does not output binary data.

Dependencies

  • Requires an active connection to the JetNet API service.
  • Needs an API authentication token and security token configured via n8n credentials (an API key credential).
  • The node makes HTTP requests to the JetNet customer endpoint (https://customer.jetnetconnect.com).

Troubleshooting

  • Missing Company ID: The operation requires a valid company ID. If omitted, the node throws an error: "Company ID is required for this operation". Ensure you provide the correct company identifier.
  • Authentication Errors: If API credentials are invalid or expired, requests will fail. Verify your API key and security token are correctly configured.
  • Unknown Resource or Operation: Using unsupported resource-operation combinations will result in errors like "Unknown company operation" or "Unknown resource".
  • Network Issues: Connectivity problems to the JetNet API endpoint can cause request failures. Check network access and proxy settings if applicable.

Links and References

Discussion