JetNet Tool icon

JetNet Tool

Access JetNet aviation data for AI Agents

Overview

This node provides access to JetNet's aviation market intelligence data, specifically for the "Market" resource and the "Get Aircraft Model List" operation. It retrieves a comprehensive list of all aircraft models available in the JetNet database.

Use cases include:

  • Aviation industry analysts seeking detailed model information for market research.
  • Aircraft brokers or sales teams needing up-to-date model lists to assist clients.
  • Developers building aviation-related applications requiring standardized aircraft model data.

Example: Fetching the full list of aircraft models to populate a dropdown menu in an aviation app or to cross-reference with other datasets.

Properties

Name Meaning
Tool Description Choose how to set the tool description: either automatically based on resource and operation, or manually provide a custom description.
Description (Shown if "Set Manually" is selected) A text field to describe what this tool does, helping AI agents understand its purpose. Default explains it accesses JetNet aviation data including specifications and market intelligence.

Output

The node outputs a JSON object with the following structure:

{
  "success": true,
  "resource": "market",
  "operation": "getAircraftModelList",
  "data": [ /* array of aircraft model objects from JetNet */ ],
  "timestamp": "ISO 8601 timestamp"
}
  • success: Boolean indicating if the API call was successful.
  • resource: The resource queried ("market").
  • operation: The operation performed ("getAircraftModelList").
  • data: An array containing the list of aircraft models 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 Connect API.
  • The node makes HTTP requests to the JetNet customer API endpoint (https://customer.jetnetconnect.com).
  • Proper configuration of the API authentication token and bearer token is necessary within n8n credentials.

Troubleshooting

  • Missing or invalid API credentials: The node requires valid API tokens; ensure these are correctly configured in n8n.
  • Unknown resource or operation errors: Selecting unsupported resources or operations will cause errors. Confirm that "market" resource and "getAircraftModelList" operation are chosen.
  • Network or API errors: Connectivity issues or JetNet service downtime may result in request failures. Check network access and JetNet service status.
  • Empty or malformed responses: If the API returns unexpected data, verify input parameters and API account permissions.

Common error messages:

  • "Unknown market operation: getAircraftModelList" — indicates a mismatch in operation name; verify spelling and case.
  • "An unknown error occurred" — generic fallback; check logs and API connectivity.

Links and References

Discussion