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 market intelligence data, specifically for the "Market" resource and the "Get Aircraft Make List" operation. It retrieves a list of all aircraft manufacturers (makes) from the JetNet database.
This node is beneficial in scenarios where users need comprehensive and up-to-date information about aircraft manufacturers for market analysis, inventory management, or integration into aviation-related applications. For example, an aviation marketplace platform could use this node to populate dropdowns with valid aircraft makes, or an analytics tool might use it to correlate market trends by manufacturer.
Properties
| Name | Meaning |
|---|---|
| Tool Description | Choose how to set the description of the tool: either automatically based on resource and operation, or manually by entering a custom description. |
| Description | When "Set Manually" is selected, enter a specific description explaining what this tool does. Defaults to: "Access JetNet aviation industry data including aircraft specifications, company information, contact details, and market intelligence". |
Output
The node outputs a JSON string containing:
success: Boolean indicating if the request was successful.resource: The resource name ("market").operation: The operation name ("getAircraftMakeList").data: The actual list of aircraft makes retrieved from JetNet.timestamp: ISO timestamp of when the response was generated.
Example output structure (formatted for clarity):
{
"success": true,
"resource": "market",
"operation": "getAircraftMakeList",
"data": [
{
"makeId": "string",
"makeName": "string",
...
}
// more aircraft make objects
],
"timestamp": "2024-06-xxTxx:xx:xx.xxxZ"
}
No binary data output is produced by 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
Common issues:
- Missing or invalid API credentials will cause authentication failures.
- Network connectivity problems can prevent reaching the JetNet API.
- Selecting an unsupported resource or operation will throw errors.
Error messages:
"Unknown resource: market"— indicates the resource parameter is incorrect or not supported."Unknown market operation: getAircraftMakeList"— indicates the operation parameter is invalid for the market resource."An unknown error occurred"— generic catch-all for unexpected failures; check network and credentials.
Resolutions:
- Verify that the API key credential is correctly configured and active.
- Confirm the resource is set to "market" and operation to "getAircraftMakeList".
- Ensure network access to the JetNet API endpoint is available.
- Review the input parameters for correctness.
Links and References
- JetNet Official Website
- JetNet API Documentation (if publicly available)
- n8n documentation on API Credentials