Actions68
- Aircraft Actions
- Get
- Get List
- Get by Registration
- Get Identification
- Get Status
- Get Maintenance
- Get Flights
- Get APU
- Get Avionics
- Get Engine
- Get Airframe
- Get Additional Equipment
- Get Features
- Get Interior
- Get Exterior
- Get Leases
- Get Company Relationships
- Get Pictures
- Get Bulk Aircraft Export
- Get Bulk Aircraft Export Paged
- Get Condensed Snapshot
- Get Condensed Owner Operators
- Get Condensed Owner Operators Paged
- Get Event List
- Get Event List Paged
- Get History List
- Get History List Paged
- Get Flight Data
- Get Relationships
- Company Actions
- Contact Actions
- Market Actions
- Get Model Intelligence
- Get Model Market Trends
- Get Model Operation Costs
- Get Model Performance Specs
- Get Account Info
- Get Product Codes
- Get Airframe Types
- Get Make Type List
- Get Weight Class Types
- Get Airframe JNIQ Sizes
- Get Aircraft Make List
- Get Aircraft Model List
- Get Company Business Types
- Get Aircraft Company Relationship Types
- Get Event Categories
- Get Event Types
- Get Airport List
- Get State List
- Get Country List
- Get Aircraft Lifecycle Status
- Get Aircraft History Transaction Types
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.comis 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
errorfield. - 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
- JetNet Official Website
- JetNet API documentation (not publicly provided here; consult your JetNet account or support)
- n8n Documentation: Creating Custom Nodes
This summary focuses specifically on the "Aircraft" resource and the "Get Bulk Aircraft Export" operation as requested.