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 Model Performance Specs" operation. It retrieves detailed performance specifications of aircraft models from the JetNet database. This is useful for aviation analysts, brokers, or companies needing accurate and up-to-date aircraft model performance metrics such as speed, range, fuel consumption, and other technical parameters.
Practical examples include:
- Comparing performance specs of different aircraft models for fleet planning.
- Integrating aircraft performance data into aviation market reports.
- Feeding AI agents with precise aircraft model data to support decision-making or customer queries.
Properties
| Name | Meaning |
|---|---|
| Tool Description | Choose how to set the tool description: - Set Automatically: The description is set 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 and capabilities. 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 string containing the following structure:
{
"success": true,
"resource": "market",
"operation": "getModelPerformanceSpecs",
"data": { /* Aircraft model performance specifications data from JetNet API */ },
"timestamp": "ISO 8601 timestamp"
}
success: Boolean indicating if the API call was successful.resource: The resource used ("market").operation: The operation performed ("getModelPerformanceSpecs").data: Contains the detailed aircraft model performance specifications returned by the JetNet API.timestamp: The time when the response was generated.
If an error occurs, the output JSON will have success set to false and include an error message describing the issue.
The node does not output binary data.
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 in n8n credentials is necessary.
Troubleshooting
- Missing Required Parameters: If required identifiers (e.g., model ID) are missing, the node throws errors indicating which parameter is needed.
- Unknown Resource or Operation: Selecting an unsupported resource or operation results in an error specifying the unknown resource or operation.
- Authentication Errors: Failure to provide valid API credentials or expired tokens will cause authorization errors.
- API Request Failures: Network issues or JetNet API downtime can lead to request failures; check connectivity and API status.
- Parsing Errors: Input data must be correctly formatted JSON or strings containing expected identifiers; malformed input may cause parsing errors.
To resolve these issues:
- Ensure all required input parameters are provided.
- Verify API credentials and tokens are valid and configured in n8n.
- Confirm network connectivity to the JetNet API endpoint.
- Provide well-formed input data matching expected formats.
Links and References
- JetNet Connect API Documentation (requires login)
- JetNet aviation market intelligence resources and data descriptions (available via JetNet official site)