JetNet Tool icon

JetNet Tool

Access JetNet aviation data for AI Agents

Overview

This node provides access to JetNet aviation market intelligence data, specifically enabling retrieval of aircraft airframe types when configured for the "Market" resource and "Get Airframe Types" operation. It is useful for users who need detailed classification information about different aircraft airframes, which can support tasks such as market analysis, inventory management, or integration with aviation databases.

Practical examples include:

  • Fetching a list of all recognized aircraft airframe types to populate dropdowns or filters in an aviation app.
  • Integrating airframe type data into AI agents or workflows that analyze aircraft specifications or market trends.
  • Enriching datasets with standardized airframe classifications for reporting or decision-making.

Properties

Name Meaning
Tool Description Choose how to set the tool's description:
- Set Automatically: The description is set based on the selected resource and operation.
- Set Manually: Allows manual entry of a custom description explaining what the tool does.
Description A text field to manually describe the tool’s purpose and capabilities. This helps language models better understand the tool when "Set Manually" is selected. Default is a general description of accessing JetNet aviation data including specifications, company info, contacts, and market intelligence.

Output

The node outputs a JSON object with the following structure:

{
  "success": true,
  "resource": "market",
  "operation": "getAirframeTypes",
  "data": [ /* array of aircraft airframe types */ ],
  "timestamp": "ISO 8601 timestamp"
}
  • success: Boolean indicating if the API call was successful.
  • resource: The resource used ("market").
  • operation: The operation performed ("getAirframeTypes").
  • data: Contains the list of aircraft airframe types retrieved from JetNet.
  • timestamp: The time when the response was generated.

No binary data output is involved; all data is returned as structured JSON.

Dependencies

  • Requires an active connection to the JetNet API service.
  • Needs an API authentication token and security token configured via credentials in n8n.
  • The node makes HTTP requests to the JetNet endpoint https://customer.jetnetconnect.com/api/Utility/getAirframeTypes.
  • Proper credential setup in n8n is mandatory to authenticate and authorize API calls.

Troubleshooting

  • Missing or invalid credentials: If the API key or security token is not set or expired, the node will fail to authenticate. Ensure valid credentials are configured.
  • Unknown resource or operation errors: Selecting a resource or operation not supported by the node will throw errors. Confirm that "Market" resource and "Get Airframe Types" operation are chosen.
  • Network or API errors: Connectivity issues or JetNet service downtime may cause request failures. Check network connectivity and JetNet service status.
  • Malformed input parameters: Although this operation requires no additional input parameters beyond resource and operation, providing unexpected inputs might cause errors.
  • Error messages typically include descriptive text such as "Unknown resource", "Unknown operation", or authentication failure messages. Review these messages to adjust configuration accordingly.

Links and References

  • JetNet official website: https://www.jetnet.com/
  • JetNet API documentation (if available publicly) should be consulted for detailed API usage and data schemas.
  • n8n documentation on creating and using custom nodes: https://docs.n8n.io/

This summary focuses exclusively on the "Market" resource and "Get Airframe Types" operation as requested.

Discussion