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 integrates with the JetNet aviation data service to retrieve detailed market intelligence and analytics about aircraft models. Specifically, the "Get Model Market Trends" operation fetches trend data and analytics related to aircraft models, which can include pricing trends, demand metrics, and other market indicators.
Use cases for this node include:
- Aviation market analysts tracking model popularity and value changes over time.
- Aircraft brokers or dealers assessing market conditions for specific aircraft models.
- Financial analysts evaluating investment opportunities in aviation assets.
- AI agents requiring up-to-date aviation market trend data to inform decisions or generate reports.
Example: An aviation consultant could use this node to automatically pull the latest market trend data for a particular aircraft model to advise clients on buying or selling timing.
Properties
| Name | Meaning |
|---|---|
| Tool Description | Choose how to set the tool's description: - Set Automatically: The description is auto-generated based on the selected resource and operation. - Set Manually: You provide a custom description explaining what the tool does. |
| Description | A text field to manually describe the tool’s purpose. This helps language models better understand the tool’s function. Only shown if "Set Manually" is selected. Default: "Access JetNet aviation industry data including aircraft specifications, company information, contact details, and market intelligence". |
Output
The node outputs a JSON object with the following structure:
{
"success": true,
"resource": "market",
"operation": "getModelMarketTrends",
"data": { /* Market trend data returned from JetNet API */ },
"timestamp": "2024-06-xxTxx:xx:xx.xxxZ"
}
success: Boolean indicating if the API call was successful.resource: The resource queried ("market").operation: The operation performed ("getModelMarketTrends").data: Contains the detailed market trend data and analytics for the requested aircraft model as returned by JetNet.timestamp: ISO timestamp of when the response was generated.
No binary data output is produced by this operation.
Dependencies
- Requires an active JetNet API credential with a valid security token and bearer token for authentication.
- The node makes HTTP requests to the JetNet API endpoint at
https://customer.jetnetconnect.com. - Proper configuration of the API credentials in n8n is necessary for successful execution.
Troubleshooting
- Missing or invalid credentials: If the API key or tokens are missing or expired, the node will fail to authenticate. Ensure that the JetNet API credentials are correctly configured and valid.
- Unknown resource or operation error: Selecting a resource or operation not supported by the node will throw an error. Confirm that "market" is selected as the resource and "getModelMarketTrends" as the operation.
- Required parameters missing: Although this operation typically uses POST with parameters, ensure any required input parameters (if applicable) are provided.
- Network or API errors: Temporary network issues or JetNet API downtime may cause failures. Check connectivity and retry later.
- Error messages: The node returns error details in the output JSON under the
errorfield. Review these messages to identify issues such as invalid inputs or server errors.
Links and References
- JetNet Official Website
- JetNet API Documentation (Assumed public API docs; replace with actual if available)
- n8n Documentation on Creating Custom Nodes
This summary focuses exclusively on the "Market" resource and the "Get Model Market Trends" operation as requested.