JetNet Tool icon

JetNet Tool

Access JetNet aviation data for AI Agents

Overview

This node provides access to JetNet aviation industry data, specifically for the Aircraft resource with the Get Identification operation. It retrieves detailed identification information about a specific aircraft by its unique ID.

Typical use cases include:

  • Fetching official identification details of an aircraft for verification or record-keeping.
  • Integrating aircraft identification data into aviation management systems.
  • Enriching datasets with authoritative aircraft identity attributes for analytics or reporting.

For example, given an aircraft ID, this node will return comprehensive identification data such as registration, serial numbers, and other key identifiers from the JetNet database.

Properties

Name Meaning
Tool Description Choose how to set the tool description:
- Set Automatically: Description is auto-generated based on resource and operation.
- Set Manually: Provide a custom description explaining what the tool does.
Description (Shown only if "Set Manually" is selected) A text field to specify a detailed description of the tool's purpose, helping language models understand its function better.

Output

The node outputs a JSON string containing:

  • success: Boolean indicating if the request was successful.
  • resource: The resource name, here "aircraft".
  • operation: The operation performed, here "getIdentification".
  • data: The actual identification data returned from JetNet API for the specified aircraft.
  • timestamp: ISO timestamp of when the response was generated.

Example output structure (formatted for clarity):

{
  "success": true,
  "resource": "aircraft",
  "operation": "getIdentification",
  "data": {
    /* Aircraft identification details from JetNet */
  },
  "timestamp": "2024-06-xxTxx:xx:xx.xxxZ"
}

No binary data output is involved in 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

  • Missing Aircraft ID Error: If the aircraft ID is not provided, the node throws an error: "Aircraft ID is required for this operation". Ensure you supply a valid aircraft ID parameter.
  • Unknown Operation or Resource: Errors like "Unknown aircraft operation" or "Unknown resource" indicate misconfiguration of resource or operation parameters.
  • API Authentication Failures: If credentials are invalid or missing, API requests will fail. Verify that the API key and tokens are correctly configured.
  • Malformed Input Data: The node attempts to parse input parameters; incorrect formats may cause errors. Provide inputs as expected (e.g., JSON object or string with correct fields).

Links and References

  • JetNet Official Website — For more information about the data source.
  • JetNet API documentation (not publicly linked here) — Consult your JetNet account or support for API usage details.

Discussion