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 Airframe JNIQ Sizes" operation. It retrieves aircraft JNIQ size categories, which are standardized size classifications used in the aviation industry to categorize airframes by their dimensions and characteristics.

Typical use cases include:

  • Aviation market analysts seeking detailed size category data for aircraft airframes.
  • Developers building AI agents or applications that require structured aircraft size classification data.
  • Integration scenarios where up-to-date market intelligence on aircraft sizes is needed for decision-making or reporting.

For example, a user might query this node to obtain the list of all recognized JNIQ size categories to filter or classify aircraft models in an aviation database or application.

Properties

Name Meaning
Tool Description Option to set the tool description either automatically based on the selected resource and operation, or manually by entering a custom description.
Description When "Set Manually" is chosen for Tool Description, this string describes what the tool does to help LLMs produce expected results more often.

Output

The node outputs a JSON object with the following structure:

{
  "success": true,
  "resource": "market",
  "operation": "getAirframeJniqSizes",
  "data": [ /* array of JNIQ size category objects */ ],
  "timestamp": "ISO 8601 timestamp"
}
  • success: Boolean indicating if the API call was successful.
  • resource: The resource queried ("market").
  • operation: The operation performed ("getAirframeJniqSizes").
  • data: Contains the retrieved list of aircraft JNIQ size categories from JetNet.
  • timestamp: The time when the response was generated.

No binary data output is involved in this operation.

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 the API key and bearer token are correctly configured.
  • Unknown resource or operation errors: If the resource or operation parameters are incorrect or unsupported, the node will throw an error indicating unknown resource or operation.
  • Required parameters missing: Some operations require specific IDs or parameters (not applicable here since this operation takes no input parameters), but generally check that required inputs are provided.
  • Network or API errors: Connectivity issues or JetNet service downtime may cause request failures; verify network access and JetNet service status.

Links and References

  • JetNet Connect API documentation (for detailed API endpoints and data definitions) — typically available from JetNet customer support or developer portal.
  • Aviation industry resources explaining JNIQ size categories and their usage in aircraft classification.

Discussion