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's aviation market intelligence data, specifically for the "Market" resource and the "Get Aircraft Model List" operation. It retrieves a comprehensive list of all aircraft models available in the JetNet database.
Use cases include:
- Aviation industry analysts seeking detailed model information for market research.
- Aircraft brokers or sales teams needing up-to-date model lists to assist clients.
- Developers building aviation-related applications requiring standardized aircraft model data.
Example: Fetching the full list of aircraft models to populate a dropdown menu in an aviation app or to cross-reference with other datasets.
Properties
| Name | Meaning |
|---|---|
| Tool Description | Choose how to set the tool description: either automatically based on resource and operation, or manually provide a custom description. |
| Description | (Shown if "Set Manually" is selected) A text field to describe what this tool does, helping AI agents understand its purpose. Default explains it accesses JetNet aviation data including specifications and market intelligence. |
Output
The node outputs a JSON object with the following structure:
{
"success": true,
"resource": "market",
"operation": "getAircraftModelList",
"data": [ /* array of aircraft model objects from JetNet */ ],
"timestamp": "ISO 8601 timestamp"
}
success: Boolean indicating if the API call was successful.resource: The resource queried ("market").operation: The operation performed ("getAircraftModelList").data: An array containing the list of aircraft models 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 customer API endpoint (
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 these are correctly configured in n8n.
- Unknown resource or operation errors: Selecting unsupported resources or operations will cause errors. Confirm that "market" resource and "getAircraftModelList" operation are chosen.
- Network or API errors: Connectivity issues or JetNet service downtime may result in request failures. Check network access and JetNet service status.
- Empty or malformed responses: If the API returns unexpected data, verify input parameters and API account permissions.
Common error messages:
"Unknown market operation: getAircraftModelList"— indicates a mismatch in operation name; verify spelling and case."An unknown error occurred"— generic fallback; check logs and API connectivity.
Links and References
- JetNet Connect API documentation (requires JetNet account): https://customer.jetnetconnect.com/api-docs
- JetNet official website: https://www.jetnet.com/
- n8n documentation on creating and using API credentials: https://docs.n8n.io/credentials/