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 Lifecycle Status" operation. It retrieves a list of aircraft lifecycle status types from the JetNet database. This information is useful for understanding the current lifecycle stage of various aircraft models, such as whether they are new, in service, retired, or otherwise categorized.
Common scenarios where this node is beneficial include:
- Aviation market analysis to track aircraft lifecycle trends.
- Integration into aviation asset management systems to classify aircraft by lifecycle status.
- Enhancing AI agents or applications that require up-to-date lifecycle status data for aircraft models.
Example use case: An aviation consultancy wants to automatically fetch and analyze the lifecycle statuses of aircraft models to advise clients on fleet renewal strategies.
Properties
| Name | Meaning |
|---|---|
| Tool Description | Choose how to set the tool's description: either automatically based on resource and operation, or manually provide a custom description. |
| Description | (Shown only if "Set Manually" is selected) A text field to describe what the tool does, helping language models understand its purpose better. |
Output
The node outputs a JSON string with the following structure:
{
"success": true,
"resource": "market",
"operation": "getAircraftLifecycleStatus",
"data": [ /* array of aircraft lifecycle status types */ ],
"timestamp": "ISO 8601 timestamp"
}
success: Indicates if the API call was successful.resource: The resource queried ("market").operation: The operation performed ("getAircraftLifecycleStatus").data: Contains the list of aircraft lifecycle status types retrieved from JetNet.timestamp: The time when the response was generated.
No binary data output is involved.
Dependencies
- Requires an API key credential for authenticating with the JetNet Connect API.
- 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
- Missing or invalid API credentials: The node requires valid API tokens; ensure the API key and bearer token are correctly configured.
- Unknown resource or operation errors: If the resource or operation parameters are incorrect or unsupported, the node will throw an error indicating unknown resource or operation.
- Required parameters missing: Some operations require specific IDs or parameters; for example, aircraft ID for certain aircraft operations. For this particular operation, no additional parameters are required.
- Network or API errors: Connectivity issues or JetNet API downtime may cause request failures. Check network connectivity and JetNet service status.
- Parsing errors: The node attempts to parse input parameters; malformed inputs may cause errors.
Links and References
- JetNet Connect API Documentation (general reference): https://customer.jetnetconnect.com (login required)
- Aviation lifecycle status concepts: https://en.wikipedia.org/wiki/Aircraft_lifecycle
This summary focuses exclusively on the "Market" resource and the "Get Aircraft Lifecycle Status" operation as requested.