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 comprehensive aviation industry data through various operations on different resources such as Aircraft, Company, Contact, and Market. Specifically, for the Aircraft resource with the Get List operation, it retrieves a list of aircraft from the JetNet database based on optional filtering criteria.
Typical use cases include:
- Fetching an up-to-date list of aircraft for market analysis or inventory management.
- Integrating aircraft data into aviation-related applications or AI agents.
- Automating retrieval of aircraft specifications and related metadata for reporting or decision-making.
For example, a user might retrieve all aircraft matching certain make types or airframe types to analyze fleet composition or track new aircraft entries.
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: Allows manual input of a custom description explaining what the tool does. |
| Description | A text field to manually describe the tool’s purpose and capabilities. This helps language models better understand the tool when set manually. 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": "aircraft",
"operation": "getList",
"data": [ /* array of aircraft objects as returned by JetNet API */ ],
"timestamp": "ISO 8601 timestamp string"
}
success: Indicates whether the API call was successful.resource: The resource queried ("aircraft").operation: The operation performed ("getList").data: Contains the list of aircraft records retrieved from JetNet. Each record includes detailed aircraft information as provided by the JetNet API.timestamp: The time when the response was generated.
No binary data output is produced by this node.
Dependencies
- Requires an active connection to the JetNet API service.
- Requires an API authentication token and security token credential configured in n8n (referred generically as "an API key credential").
- The node makes HTTP requests to the JetNet API endpoints at
https://customer.jetnetconnect.com.
Troubleshooting
- Missing Required Parameters: For some operations, specific IDs or parameters are mandatory. For example, the "Get" operation requires an aircraft ID. Omitting these will cause errors.
- Authentication Errors: Ensure that the API credentials (security token and bearer token) are correctly configured and valid.
- Unknown Resource or Operation: Selecting an unsupported resource or operation will throw an error indicating the unknown resource or operation.
- Invalid Input Format: If input parameters are malformed or missing expected fields, the API request may fail.
- Network Issues: Connectivity problems to the JetNet API endpoint can cause request failures.
Common error messages include:
"Aircraft ID is required for this operation"— Provide a valid aircraft ID."Registration number is required for this operation"— Provide a valid registration number."Unknown aircraft operation: <operation>"— Verify the operation name is correct."Unknown resource: <resource>"— Verify the resource name is correct.
Resolving these typically involves verifying input parameters, checking credentials, and ensuring network connectivity.
Links and References
- JetNet Official Website
- JetNet API documentation (not publicly linked here; consult your JetNet account or support)
- n8n Documentation: Creating Custom Nodes