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 Aircraft Make List" operation. It retrieves a list of all aircraft manufacturers (makes) from the JetNet database.

This node is beneficial in scenarios where users need comprehensive and up-to-date information about aircraft manufacturers for market analysis, inventory management, or integration into aviation-related applications. For example, an aviation marketplace platform could use this node to populate dropdowns with valid aircraft makes, or an analytics tool might use it to correlate market trends by manufacturer.

Properties

Name Meaning
Tool Description Choose how to set the description of the tool: either automatically based on resource and operation, or manually by entering a custom description.
Description When "Set Manually" is selected, enter a specific description explaining what this tool does. Defaults to: "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 request was successful.
  • resource: The resource name ("market").
  • operation: The operation name ("getAircraftMakeList").
  • data: The actual list of aircraft makes retrieved from JetNet.
  • timestamp: ISO timestamp of when the response was generated.

Example output structure (formatted for clarity):

{
  "success": true,
  "resource": "market",
  "operation": "getAircraftMakeList",
  "data": [
    {
      "makeId": "string",
      "makeName": "string",
      ...
    }
    // more aircraft make objects
  ],
  "timestamp": "2024-06-xxTxx:xx:xx.xxxZ"
}

No binary data output is produced by 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

  • Common issues:

    • Missing or invalid API credentials will cause authentication failures.
    • Network connectivity problems can prevent reaching the JetNet API.
    • Selecting an unsupported resource or operation will throw errors.
  • Error messages:

    • "Unknown resource: market" — indicates the resource parameter is incorrect or not supported.
    • "Unknown market operation: getAircraftMakeList" — indicates the operation parameter is invalid for the market resource.
    • "An unknown error occurred" — generic catch-all for unexpected failures; check network and credentials.
  • Resolutions:

    • Verify that the API key credential is correctly configured and active.
    • Confirm the resource is set to "market" and operation to "getAircraftMakeList".
    • Ensure network access to the JetNet API endpoint is available.
    • Review the input parameters for correctness.

Links and References

Discussion