JetNet Tool icon

JetNet Tool

Access JetNet aviation data for AI Agents

Overview

The node provides access to JetNet aviation industry data through various resources and operations. Specifically, for the Market resource with the Get Account Info operation, it retrieves the current user account information from the JetNet service.

This node is beneficial in scenarios where users or AI agents need to programmatically obtain detailed aviation market intelligence, including account details, aircraft specifications, company info, and more. For example, an aviation analyst could automate fetching their JetNet account info to verify subscription status or usage limits before performing further data queries.

Properties

Name Meaning
Tool Description Choose how to set the tool's description:
- Set Automatically: The description is generated 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. This helps language models better understand the tool’s function. 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:

  • success: Boolean indicating if the API call was successful.
  • resource: The resource name used ("market").
  • operation: The operation performed ("getAccountInfo").
  • data: The actual account information data returned by the JetNet API.
  • timestamp: ISO timestamp of when the response was generated.

Example output structure (formatted for clarity):

{
  "success": true,
  "resource": "market",
  "operation": "getAccountInfo",
  "data": {
    /* JetNet account info fields */
  },
  "timestamp": "2024-06-XXTXX:XX:XX.XXXZ"
}

No binary data output is involved in 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 is necessary within n8n credentials.

Troubleshooting

  • Missing or invalid credentials: The node requires valid API authentication tokens. Ensure that the API key credential is correctly configured and active.
  • Unknown resource or operation errors: Selecting a resource or operation not supported by the node will throw an error. Confirm that "market" is selected as the resource and "getAccountInfo" as the operation.
  • Network or API errors: If the JetNet API is unreachable or returns an error, the node will return a JSON error message with details. Check network connectivity and API service status.
  • Malformed input data: The node expects parameters relevant to the operation; incorrect or missing parameters may cause errors.

Links and References

Discussion