JetNet Tool icon

JetNet Tool

Access JetNet aviation data for AI Agents

Overview

This node provides access to JetNet aviation market intelligence data, specifically for the "Market" resource and the "Get Model Performance Specs" operation. It retrieves detailed performance specifications of aircraft models from the JetNet database. This is useful for aviation analysts, brokers, or companies needing accurate and up-to-date aircraft model performance metrics such as speed, range, fuel consumption, and other technical parameters.

Practical examples include:

  • Comparing performance specs of different aircraft models for fleet planning.
  • Integrating aircraft performance data into aviation market reports.
  • Feeding AI agents with precise aircraft model data to support decision-making or customer queries.

Properties

Name Meaning
Tool Description Choose how to set the tool description:
- Set Automatically: The description is set 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 and capabilities. Only shown if "Set Manually" is selected. Default: "Access JetNet aviation industry data including aircraft specifications, company information, contact details, and market intelligence".

Output

The node outputs a JSON string containing the following structure:

{
  "success": true,
  "resource": "market",
  "operation": "getModelPerformanceSpecs",
  "data": { /* Aircraft model performance specifications data from JetNet API */ },
  "timestamp": "ISO 8601 timestamp"
}
  • success: Boolean indicating if the API call was successful.
  • resource: The resource used ("market").
  • operation: The operation performed ("getModelPerformanceSpecs").
  • data: Contains the detailed aircraft model performance specifications returned by the JetNet API.
  • timestamp: The time when the response was generated.

If an error occurs, the output JSON will have success set to false and include an error message describing the issue.

The node does not output binary data.

Dependencies

  • Requires an API key credential for authenticating with the JetNet Connect API.
  • The node makes HTTP requests to the JetNet API endpoint at https://customer.jetnetconnect.com.
  • Proper configuration of the API authentication token and bearer token in n8n credentials is necessary.

Troubleshooting

  • Missing Required Parameters: If required identifiers (e.g., model ID) are missing, the node throws errors indicating which parameter is needed.
  • Unknown Resource or Operation: Selecting an unsupported resource or operation results in an error specifying the unknown resource or operation.
  • Authentication Errors: Failure to provide valid API credentials or expired tokens will cause authorization errors.
  • API Request Failures: Network issues or JetNet API downtime can lead to request failures; check connectivity and API status.
  • Parsing Errors: Input data must be correctly formatted JSON or strings containing expected identifiers; malformed input may cause parsing errors.

To resolve these issues:

  • Ensure all required input parameters are provided.
  • Verify API credentials and tokens are valid and configured in n8n.
  • Confirm network connectivity to the JetNet API endpoint.
  • Provide well-formed input data matching expected formats.

Links and References

Discussion