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 information about aircraft and their relationships. Specifically, for the Aircraft resource and the Get Relationships operation, it fetches all relationship data associated with a particular aircraft from the JetNet database.

Use cases include:

  • Accessing comprehensive relationship data of an aircraft such as linked companies, contacts, or other related entities.
  • Enriching aviation datasets with relational context for analytics or operational workflows.
  • Automating retrieval of connected aviation data for AI agents or business intelligence tools.

Example: Given an aircraft ID, this node can return all related entities (companies, contacts, etc.) connected to that aircraft, enabling deeper insights into ownership, maintenance, or operational networks.

Properties

Name Meaning
Tool Description Choose how to set the tool description:
- Set Automatically: Description is auto-generated based on resource and operation.
- Set Manually: Provide a custom description for the tool.
Description A text field to manually specify what the tool does. This helps language models understand the tool's purpose 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": "aircraft",
  "operation": "getRelationships",
  "data": { /* Relationship data returned by JetNet API */ },
  "timestamp": "ISO 8601 timestamp"
}
  • success: Boolean indicating if the API call was successful.
  • resource: The resource queried ("aircraft").
  • operation: The operation performed ("getRelationships").
  • data: Contains the detailed relationships data for the specified aircraft as returned by the JetNet API.
  • timestamp: The time when the response was generated.

If an error occurs, the output JSON will have:

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

No binary data output is involved in this operation.

Dependencies

  • Requires an active JetNet API credential with appropriate permissions.
  • The node makes authenticated HTTP requests to the JetNet API endpoints.
  • Network access to https://customer.jetnetconnect.com is required.
  • Proper configuration of the API key and security token in n8n credentials is necessary.

Troubleshooting

  • Missing Aircraft ID: The operation requires an aircraft identifier. If not provided, the node throws an error: "Aircraft ID is required for this operation". Ensure you supply a valid aircraft ID.
  • Authentication Errors: If API credentials are invalid or expired, requests will fail. Verify your API key and tokens in the n8n credential settings.
  • Unknown Operation or Resource: Using unsupported operations or resources will cause errors like "Unknown aircraft operation: getRelationships" or "Unknown resource: aircraft". Confirm you select the correct resource and operation.
  • Network Issues: Connectivity problems to the JetNet API endpoint will result in request failures. Check network/firewall settings.
  • Malformed Input: Input parameters must be correctly formatted JSON or strings containing required fields like aircraftId.

Links and References


This summary focuses on the Aircraft resource with the Get Relationships operation as requested.

Discussion