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 enabling retrieval of various types of aircraft event-related information under the "Market" resource. The "Get Event Types" operation fetches a list of aircraft event types from the JetNet database.
Typical use cases include:
- Integrating aviation event type data into workflows for analytics or reporting.
- Enriching aviation market intelligence dashboards with standardized event categories.
- Automating data retrieval for AI agents that require up-to-date event type classifications in the aviation industry.
For example, an aviation analyst could use this node to automatically pull all available event types to categorize incidents or maintenance events across a fleet.
Properties
| Name | Meaning |
|---|---|
| Tool Description | Choose how to set the tool description: - Set Automatically: Description is auto-generated based on the selected resource and operation. - Set Manually: User provides a custom description explaining what the tool does. |
| Description | A user-defined string describing the tool's purpose, shown only if "Set Manually" is selected. It helps language models understand the tool's function better. |
Output
The node outputs a JSON object with the following structure:
{
"success": true,
"resource": "market",
"operation": "getEventTypes",
"data": [ /* array of event type objects retrieved from JetNet */ ],
"timestamp": "ISO 8601 timestamp"
}
success: Boolean indicating whether the API call was successful.resource: The resource name ("market").operation: The operation performed ("getEventTypes").data: An array containing the list of aircraft event types returned by the JetNet API.timestamp: The time when the response was generated.
No binary data output is produced by this operation.
Dependencies
- Requires an active connection to the JetNet API service.
- Needs an API authentication token (provided via credentials configured in n8n).
- The node makes HTTP requests to the JetNet customer endpoint (
https://customer.jetnetconnect.com).
Troubleshooting
- Missing or invalid API credentials: The node requires valid API tokens to authenticate requests. Ensure credentials are correctly configured in n8n.
- Unknown resource or operation errors: Selecting unsupported resources or operations will cause errors. Confirm that "Market" resource and "Get Event Types" operation are chosen.
- Network or API errors: Connectivity issues or JetNet service downtime may result in request failures. Check network connectivity and JetNet service status.
- Unexpected response format: If the API changes its response schema, the node might fail to parse results properly.
Common error message example:
"Unknown market operation: getEventTypes"— This would indicate a mismatch between the requested operation and the implemented API endpoints; verify operation spelling and availability.
Links and References
- JetNet Aviation Data Portal: https://www.jetnet.com/
- JetNet API Documentation (if publicly available) — consult your JetNet account representative for API details.
- n8n HTTP Request Node Documentation: https://docs.n8n.io/nodes/n8n-nodes-base.httpRequest/