JetNet Tool icon

JetNet Tool

Access JetNet aviation data for AI Agents

Overview

The "Get Bulk Aircraft Export" operation of the JetNet Tool allows users to export all aircraft data in bulk from the JetNet aviation database. This operation is designed for scenarios where comprehensive aircraft data extraction is needed, such as large-scale data analysis, market research, or integration with other aviation systems.

Practical examples include:

  • Aviation market analysts exporting full aircraft datasets for trend analysis.
  • Software platforms importing bulk aircraft data to maintain up-to-date records.
  • Researchers compiling extensive aircraft specifications and histories for studies.

This operation sends a POST request to the JetNet API endpoint dedicated to bulk aircraft exports, optionally accepting filtering or pagination parameters.

Properties

Name Meaning
Tool Description Choose how to set the tool description:
- Set Automatically: The description is auto-generated based on resource and operation.
- Set Manually: Allows manual input of a custom description explaining what the tool does.
Description A text field to manually describe the tool's purpose when "Set Manually" is selected. Useful for clarifying the tool's function to AI agents or users. Default is: "Access JetNet aviation industry data including aircraft specifications, company information, contact details, and market intelligence".

Output

The node outputs a JSON string containing the following structure:

{
  "success": true,
  "resource": "aircraft",
  "operation": "getBulkAircraftExport",
  "data": { /* bulk aircraft data returned by JetNet API */ },
  "timestamp": "ISO 8601 timestamp"
}
  • success: Boolean indicating if the API call was successful.
  • resource: The resource type, here always "aircraft".
  • operation: The operation performed, here "getBulkAircraftExport".
  • data: The bulk aircraft data returned by the JetNet API. This includes all available aircraft records according to any filters or parameters sent.
  • timestamp: The time when the response was generated.

No binary data output is indicated for this operation.

Dependencies

  • Requires an active connection to the JetNet API service.
  • Requires valid API credentials (an API key and bearer token) configured in n8n credentials for authentication.
  • Network access to https://customer.jetnetconnect.com is necessary.
  • The node uses HTTP POST requests to interact with the JetNet API endpoints.

Troubleshooting

  • Missing or invalid credentials: The node requires valid API authentication tokens. Ensure that the API key and bearer token are correctly configured in n8n credentials.
  • Required parameters missing: Although this operation accepts optional parameters, ensure that any required fields (if used) are properly set.
  • API endpoint errors: If the JetNet API returns errors, check the error message included in the output JSON under the error field.
  • Network issues: Verify network connectivity to the JetNet API server.
  • Unknown operation or resource errors: These should not occur if the node is used as intended, but misconfiguration could cause them.

Common error messages:

  • "Unknown aircraft operation: getBulkAircraftExport" — indicates a mismatch in operation name; verify correct spelling and casing.
  • "An unknown error occurred" — generic fallback; check logs and network status.

Links and References


This summary focuses specifically on the "Aircraft" resource and the "Get Bulk Aircraft Export" operation as requested.

Discussion