JetNet Tool icon

JetNet Tool

Access JetNet aviation data for AI Agents

Overview

This node provides access to JetNet's aviation industry data, specifically for the Aircraft resource with the operation Get Condensed Owner Operators. It retrieves condensed information about aircraft owners and operators from the JetNet database.

Typical use cases include:

  • Quickly obtaining summarized owner/operator details for a fleet of aircraft.
  • Integrating owner/operator data into aviation management or analytics workflows.
  • Enriching datasets with ownership information for market research or compliance checks.

For example, an aviation analyst might use this node to fetch a concise list of all current aircraft owners/operators to analyze market share or ownership trends.

Properties

Name Meaning
Tool Description Choose how to set the tool description: either automatically based on resource and operation, or manually by entering a custom description.
Description (Shown only if "Set Manually" is selected) A text field to provide a detailed explanation of what this tool does, helping AI agents understand its purpose.

Output

The node outputs a JSON object with the following structure:

{
  "success": true,
  "resource": "aircraft",
  "operation": "getCondensedOwnerOperators",
  "data": { /* Condensed owner/operator information returned from JetNet API */ },
  "timestamp": "ISO 8601 timestamp"
}
  • success: Indicates whether the API call was successful.
  • resource: The resource queried ("aircraft").
  • operation: The operation performed ("getCondensedOwnerOperators").
  • data: Contains the condensed owner/operator information retrieved from JetNet.
  • timestamp: The time when the response was generated.

No binary data output is produced by this operation.

Dependencies

  • Requires an active connection to the JetNet API service.
  • Needs an API authentication token and security token configured in n8n credentials for JetNet.
  • The node makes HTTP requests to JetNet endpoints under https://customer.jetnetconnect.com.

Troubleshooting

  • Missing or invalid credentials: Ensure that the required API authentication tokens are correctly configured in n8n credentials.
  • Required parameters missing: Some operations require specific IDs or registration numbers; verify that these inputs are provided.
  • Unknown resource or operation errors: Confirm that the resource is set to "aircraft" and the operation to "getCondensedOwnerOperators".
  • Network or API errors: Check network connectivity and JetNet service status.
  • Error message example: "Registration number is required for this operation" — indicates a missing mandatory input parameter.

If errors occur, review the error message included in the output JSON under the error field for guidance.

Links and References

  • JetNet Official Website
  • JetNet API documentation (access typically requires JetNet account)
  • n8n HTTP Request node documentation for understanding underlying request mechanics

Discussion