JetNet Tool icon

JetNet Tool

Access JetNet aviation data for AI Agents

Overview

This node integrates with the JetNet aviation data service to export aircraft data in paged bulk format. Specifically, the "Get Bulk Aircraft Export Paged" operation allows users to retrieve large sets of aircraft data divided into manageable pages, which is useful for processing or analyzing extensive datasets without overwhelming system resources.

Common scenarios where this node is beneficial include:

  • Aviation market analysts needing comprehensive aircraft data segmented by pages.
  • Developers building applications that require incremental loading of aircraft information.
  • Data engineers exporting aircraft records for ETL (Extract, Transform, Load) pipelines.

Practical example: A user wants to download all aircraft data but prefers to fetch it in batches of 100 records per page to avoid timeouts or memory issues. They configure the node to use the "Get Bulk Aircraft Export Paged" operation and specify the page size and page number parameters accordingly.

Properties

Name Meaning
Tool Description Choose how to set the tool's description: either automatically based on resource and operation, or manually by entering a custom description.
Description When manual description is selected, provide a specific explanation of what this tool does to help AI agents produce better results.

Output

The node outputs JSON data structured as follows:

{
  "success": true,
  "resource": "aircraft",
  "operation": "getBulkAircraftExportPaged",
  "data": { /* The paged aircraft data returned from JetNet API */ },
  "timestamp": "ISO 8601 timestamp string"
}
  • success: Indicates whether the API call was successful.
  • resource: The resource type, here always "aircraft".
  • operation: The operation performed, here "getBulkAircraftExportPaged".
  • data: Contains the actual aircraft data for the requested page, as returned by the JetNet API.
  • timestamp: The time when the response was generated.

No binary data output is indicated for this operation.

Dependencies

  • Requires an API key credential for authenticating with the JetNet aviation data service.
  • The node makes HTTP requests to the JetNet API endpoint at https://customer.jetnetconnect.com.
  • Proper configuration of the API authentication token and security token is necessary within n8n credentials.

Troubleshooting

  • Missing or invalid credentials: If the API key or tokens are not configured correctly, the node will fail to authenticate. Ensure valid credentials are set up in n8n.
  • Required parameters missing: For this operation, pagination parameters such as pageSize and page should be provided; otherwise, defaults (pageSize=100, page=1) are used. Supplying invalid values may cause errors.
  • Unknown resource or operation error: This node only supports predefined resources and operations. Using unsupported combinations will throw errors.
  • API request failures: Network issues or JetNet service downtime can cause request failures. Check connectivity and JetNet service status.
  • Error messages: The node returns error details in the output JSON under the error field. Common messages include missing IDs or registration numbers for other operations, but for this operation, ensure pagination parameters are correct.

Links and References

Discussion