JetNet Tool icon

JetNet Tool

Access JetNet aviation data for AI Agents

Overview

This node provides access to detailed aviation data from the JetNet database, specifically for the Aircraft resource with the Get Features operation. It retrieves comprehensive information about an aircraft's features and capabilities by its unique identifier.

Typical use cases include:

  • Aviation industry analytics where detailed aircraft feature data is required.
  • Integrating aircraft capability data into AI agents or automation workflows.
  • Enriching aviation datasets with specific aircraft features for market intelligence or maintenance planning.

For example, a user can input an aircraft ID to fetch all available features such as avionics, equipment, and other capabilities, enabling informed decision-making or automated reporting.

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: User provides a custom description explaining what the tool does.
Description (Shown only if "Set Manually" is selected) A text field to manually describe the tool’s purpose, helping language models understand the tool better. Default: "Access JetNet aviation industry data including aircraft specifications, company information, contact details, and market intelligence".

Output

The node outputs a JSON string containing:

  • success: Boolean indicating if the API call was successful.
  • resource: The resource name, here always "aircraft".
  • operation: The operation performed, here "getFeatures".
  • data: The detailed aircraft features and capabilities returned from the JetNet API.
  • timestamp: ISO timestamp of when the response was generated.

Example output structure (formatted for clarity):

{
  "success": true,
  "resource": "aircraft",
  "operation": "getFeatures",
  "data": {
    /* Aircraft features and capabilities data object */
  },
  "timestamp": "2024-06-01T12:00:00.000Z"
}

No binary data output is produced by this operation.

Dependencies

  • Requires an API key credential for authenticating with the JetNet service.
  • 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 Aircraft ID: The operation requires an aircraft ID (aircraftId or id). If not provided, the node throws an error: "Aircraft ID is required for this operation". Ensure you supply a valid aircraft identifier.
  • Unknown Operation or Resource: If the operation or resource is misspelled or unsupported, errors like "Unknown aircraft operation: getFeatures" or "Unknown resource: aircraft" may occur. Verify the exact spelling and supported options.
  • Authentication Errors: If API credentials are invalid or missing, HTTP request failures will occur. Confirm that the API key and tokens are correctly configured in n8n.
  • API Response Issues: Network problems or JetNet service downtime can cause request failures. Check connectivity and JetNet service status.

Links and References

  • JetNet Official Website – For more information about the data source.
  • JetNet API documentation (not publicly linked here) – Consult your JetNet account or support for detailed API specs and usage guidelines.

Discussion