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 various types of aircraft event-related information under the "Market" resource. The "Get Event Types" operation fetches a list of aircraft event types from the JetNet database.

Typical use cases include:

  • Integrating aviation event type data into workflows for analytics or reporting.
  • Enriching aviation market intelligence dashboards with standardized event categories.
  • Automating data retrieval for AI agents that require up-to-date event type classifications in the aviation industry.

For example, an aviation analyst could use this node to automatically pull all available event types to categorize incidents or maintenance events across a fleet.

Properties

Name Meaning
Tool Description Choose how to set the tool description:
- Set Automatically: Description is auto-generated based on the selected resource and operation.
- Set Manually: User provides a custom description explaining what the tool does.
Description A user-defined string describing the tool's purpose, shown only if "Set Manually" is selected. It helps language models understand the tool's function better.

Output

The node outputs a JSON object with the following structure:

{
  "success": true,
  "resource": "market",
  "operation": "getEventTypes",
  "data": [ /* array of event type objects retrieved from JetNet */ ],
  "timestamp": "ISO 8601 timestamp"
}
  • success: Boolean indicating whether the API call was successful.
  • resource: The resource name ("market").
  • operation: The operation performed ("getEventTypes").
  • data: An array containing the list of aircraft event types returned by the JetNet API.
  • 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 (provided via credentials configured in n8n).
  • The node makes HTTP requests to the JetNet customer endpoint (https://customer.jetnetconnect.com).

Troubleshooting

  • Missing or invalid API credentials: The node requires valid API tokens to authenticate requests. Ensure credentials are correctly configured in n8n.
  • Unknown resource or operation errors: Selecting unsupported resources or operations will cause errors. Confirm that "Market" resource and "Get Event Types" operation are chosen.
  • Network or API errors: Connectivity issues or JetNet service downtime may result in request failures. Check network connectivity and JetNet service status.
  • Unexpected response format: If the API changes its response schema, the node might fail to parse results properly.

Common error message example:

  • "Unknown market operation: getEventTypes" — This would indicate a mismatch between the requested operation and the implemented API endpoints; verify operation spelling and availability.

Links and References

Discussion