JetNet Tool icon

JetNet Tool

Access JetNet aviation data for AI Agents

Overview

This node provides access to JetNet aviation market intelligence data, specifically for the "Market" resource and the "Get Event Categories" operation. It retrieves a list of aircraft event categories from the JetNet database. This is useful for users who want to analyze or categorize various types of events related to aircraft in the aviation industry.

Practical examples include:

  • Fetching all event categories to classify aircraft maintenance or operational events.
  • Integrating event category data into aviation analytics dashboards.
  • Enriching AI agents with detailed aviation event taxonomy for better decision-making.

Properties

Name Meaning
Tool Description Choose how to set the tool description: either automatically based on the selected resource and operation, or manually by entering a custom description.
Description (Shown only if "Set Manually" is chosen) A text field to provide a specific description of what this tool does, helping language models produce more accurate results.

Output

The node outputs a JSON string containing the following structure:

{
  "success": true,
  "resource": "market",
  "operation": "getEventCategories",
  "data": [ /* array of event category objects from JetNet */ ],
  "timestamp": "ISO 8601 timestamp"
}
  • success: Indicates whether the API call was successful.
  • resource: The resource queried ("market").
  • operation: The operation performed ("getEventCategories").
  • data: The actual list of aircraft event categories retrieved from JetNet.
  • timestamp: The time when the response was generated.

No binary data output is involved.

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 in n8n.
  • Unknown resource or operation errors: If the resource or operation parameters are incorrect or unsupported, the node will throw an error indicating the unknown resource or operation.
  • Required parameters missing: Some operations require specific IDs or parameters; ensure these are provided when applicable.
  • Network or API errors: Connectivity issues or JetNet API downtime may cause request failures. Check network connectivity and JetNet service status.
  • Parsing errors: If input parameters are malformed JSON or invalid strings, the node attempts to parse them but may fail, resulting in errors.

Links and References

  • JetNet official website: https://www.jetnet.com/
  • JetNet API documentation (if available publicly, otherwise consult your JetNet account representative)
  • n8n documentation on creating and using custom nodes: https://docs.n8n.io/

This summary focuses exclusively on the "Market" resource and the "Get Event Categories" operation as requested.

Discussion