JetNet Tool icon

JetNet Tool

Access JetNet aviation data for AI Agents

Overview

This node provides access to JetNet aviation market intelligence data, specifically enabling retrieval of available product codes associated with the user's account. It is useful for users who need to integrate detailed aviation market data into their workflows, such as aircraft manufacturers, brokers, or analysts looking to automate access to standardized product codes used in the aviation industry.

For example, a user might employ this node to fetch all valid product codes before processing or validating aviation-related transactions or reports, ensuring consistent use of industry-standard identifiers.

Properties

Name Meaning
Tool Description Choose how to set the tool's description: "Set Automatically" uses a predefined description based on resource and operation; "Set Manually" allows entering a custom description.
Description (Shown only if "Set Manually" is selected) A text field to provide a specific description of what this tool does, helping language models produce better results.

Output

The node outputs a JSON object with the following structure:

  • success: Boolean indicating whether the API call was successful.
  • resource: The resource name, here always "market".
  • operation: The operation name, here "getProductCodes".
  • data: The actual response data from the JetNet API containing the list of available product codes for the account.
  • timestamp: ISO 8601 timestamp of when the response was generated.

Example output snippet:

{
  "success": true,
  "resource": "market",
  "operation": "getProductCodes",
  "data": {
    /* product codes data from JetNet */
  },
  "timestamp": "2024-06-01T12:00:00.000Z"
}

No binary data output is produced by this node.

Dependencies

  • Requires an API key credential for authenticating with the JetNet Connect API.
  • The node makes HTTP requests to the JetNet service endpoint at https://customer.jetnetconnect.com.
  • Proper configuration of the API authentication token and security 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: If the resource or operation parameters are incorrect or unsupported, the node will throw an error. Verify that the resource is set to "market" and operation to "getProductCodes".
  • Network or API errors: Connectivity issues or JetNet service downtime may cause request failures. Check network connectivity and JetNet service status.
  • Malformed input data: Although this operation does not require input parameters, any unexpected inputs could cause errors. Use default or empty inputs as appropriate.

Links and References

  • JetNet Connect API Documentation (requires login)
  • Aviation industry standards for product codes (consult relevant aviation regulatory bodies or industry groups)

Discussion