JetNet Tool icon

JetNet Tool

Access JetNet aviation data for AI Agents

Overview

The node provides access to JetNet aviation industry data, specifically for the Aircraft resource with the Get History List Paged operation. This operation retrieves a paginated list of historical records related to an aircraft, such as ownership changes, transactions, or other significant events in the aircraft's history.

This node is beneficial when you need to analyze or audit the historical background of specific aircraft within aviation databases, for example:

  • Tracking ownership and transaction history for compliance or due diligence.
  • Monitoring aircraft lifecycle events over time.
  • Integrating detailed aircraft history into aviation market intelligence reports.

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

Output

The output is a JSON string containing the following structure:

{
  "success": true,
  "resource": "aircraft",
  "operation": "getHistoryListPaged",
  "data": { /* paged aircraft history list data from JetNet API */ },
  "timestamp": "ISO 8601 timestamp"
}
  • success: Boolean indicating if the API call was successful.
  • resource: The resource queried ("aircraft").
  • operation: The operation performed ("getHistoryListPaged").
  • data: The actual paginated list of aircraft history records returned by the JetNet API.
  • timestamp: The time when the response was generated.

If an error occurs, the output will contain:

{
  "success": false,
  "error": "Error message",
  "resource": "aircraft",
  "operation": "getHistoryListPaged",
  "timestamp": "ISO 8601 timestamp"
}

No binary data output is indicated for this operation.

Dependencies

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

Troubleshooting

  • Missing Required Parameters: The operation expects certain parameters (e.g., page size, page number) in the input data. Omitting these may cause errors or unexpected results.
  • Authentication Errors: If the API key or tokens are invalid or expired, the node will return authorization errors. Ensure valid credentials are configured.
  • Unknown Resource or Operation: Using unsupported resource-operation combinations will throw errors.
  • Parsing Input Data: The node attempts to parse input parameters from JSON or extract registration numbers via regex. Malformed inputs may cause failures.
  • API Rate Limits or Downtime: External API issues can cause request failures; check JetNet service status if persistent errors occur.

Links and References

Discussion