Actions44
- Contact Actions
- 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 Paged
- Get Condensed Owner Operators Paged
- Get Event List Paged
- Get History List Paged
- Company Actions
- Market Actions
Overview
This node integrates with the JetNet API to retrieve aviation industry data related to aircraft. Specifically, the "Aircraft" resource with the "Get List" operation fetches a list of aircraft records from the JetNet database. It allows users to either return all available aircraft or limit the number of results returned.
Common scenarios for this node include:
- Fetching a comprehensive list of aircraft for market analysis or inventory management.
- Retrieving a subset of aircraft data for reporting or integration with other systems.
- Automating workflows that require up-to-date aircraft information from a trusted aviation data source.
Practical example:
- An aviation brokerage firm could use this node to pull the latest aircraft listings to update their internal CRM or sales platform.
- A maintenance provider might retrieve aircraft lists filtered by specific criteria to plan service schedules.
Properties
| Name | Meaning |
|---|---|
| Return All | Boolean flag indicating whether to return all aircraft results (true) or limit results (false). |
| Limit | Maximum number of aircraft results to return when "Return All" is set to false. Range: 1 to 1000. |
Output
The output is an array of JSON objects, each representing an individual aircraft record retrieved from the JetNet API. Each object contains detailed aircraft data fields as provided by the API.
- If multiple aircraft are returned, each aircraft appears as a separate item in the output array.
- The structure and fields of each aircraft JSON object correspond directly to the JetNet API response for aircraft listings.
- No binary data is output by this operation.
Dependencies
- Requires an active connection to the JetNet API via an API key credential configured in n8n.
- The node uses HTTP POST requests to the JetNet endpoint
/api/Aircraft/getAircraftListwith appropriate authentication. - Network access to
https://customer.jetnetconnect.commust be available.
Troubleshooting
- Authentication errors: Ensure the API key credential is correctly configured and has sufficient permissions.
- Empty results: Verify filter parameters (if any) in additional fields; default parameters return all aircraft without filters.
- Limit exceeded: When "Return All" is false, ensure the "Limit" value is within the allowed range (1-1000).
- API downtime or network issues: Check connectivity to the JetNet API endpoint.
- Unexpected response format: Confirm the API version compatibility and that no changes have been made to the JetNet API.
Links and References
- JetNet Official Website
- JetNet API documentation (access typically requires JetNet account)
- n8n documentation on creating and using API credentials