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
This node provides access to JetNet aviation industry data through various resources and operations. Specifically, for the Market resource with the Get Make Type List operation, it retrieves a list of aircraft make types from the JetNet database.
This node is beneficial in scenarios where users need detailed aviation market intelligence, such as obtaining standardized lists of aircraft make types for analytics, reporting, or integration into aviation-related applications.
Practical example:
A user building an aviation market analysis workflow can use this node to fetch the current list of aircraft make types to populate dropdowns, validate input data, or enrich datasets with accurate manufacturer categories.
Properties
| Name | Meaning |
|---|---|
| Tool Description | Choose how to set the tool description: - Set Automatically: Description is set based on the selected resource and operation. - Set Manually: User provides a custom description explaining what the tool does. |
| Description | (Visible only if "Set Manually" is chosen) A text field where you can specify a detailed description of the tool's purpose, helping language models produce better results. Default: "Access JetNet aviation industry data including aircraft specifications, company information, contact details, and market intelligence". |
Output
The node outputs JSON data structured as follows:
{
"success": true,
"resource": "market",
"operation": "getMakeTypeList",
"data": [ /* array of aircraft make types */ ],
"timestamp": "ISO 8601 timestamp"
}
success: Indicates whether the API call was successful.resource: The resource queried ("market").operation: The operation performed ("getMakeTypeList").data: Contains the list of aircraft make types retrieved from JetNet.timestamp: The time when the response was generated.
No binary data output is produced by this operation.
Dependencies
- Requires an active connection to the JetNet API service.
- Needs an API authentication token credential configured in n8n to authorize requests.
- The node makes HTTP requests to JetNet endpoints under the base URL
https://customer.jetnetconnect.com. - Proper API credentials must be provided to avoid authorization errors.
Troubleshooting
Common issues:
- Missing or invalid API credentials will cause authentication failures.
- Network connectivity problems may prevent reaching the JetNet API.
- Selecting an unsupported resource or operation will throw an error.
Error messages:
"Unknown resource: market": Occurs if the resource parameter is incorrect or not supported."Unknown market operation: getMakeTypeList": Would occur if the operation name is misspelled or not implemented."An unknown error occurred": Generic fallback for unexpected errors; check network and credentials.
Resolutions:
- Verify that the API key credential is correctly set up in n8n.
- Confirm the resource and operation names are correct and supported.
- Ensure stable internet connection and JetNet API availability.
Links and References
- JetNet Official Website – For more information about the JetNet aviation data services.
- JetNet API documentation (not publicly linked here) – Consult your JetNet account representative for API details and usage guidelines.