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
The node provides access to JetNet aviation industry data through various resources and operations. Specifically, for the Market resource with the Get Account Info operation, it retrieves the current user account information from the JetNet service.
This node is beneficial in scenarios where users or AI agents need to programmatically obtain detailed aviation market intelligence, including account details, aircraft specifications, company info, and more. For example, an aviation analyst could automate fetching their JetNet account info to verify subscription status or usage limits before performing further data queries.
Properties
| Name | Meaning |
|---|---|
| Tool Description | Choose how to set the tool's description: - Set Automatically: The description is generated 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. This helps language models better understand the tool’s function. 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:
success: Boolean indicating if the API call was successful.resource: The resource name used ("market").operation: The operation performed ("getAccountInfo").data: The actual account information data returned by the JetNet API.timestamp: ISO timestamp of when the response was generated.
Example output structure (formatted for clarity):
{
"success": true,
"resource": "market",
"operation": "getAccountInfo",
"data": {
/* JetNet account info fields */
},
"timestamp": "2024-06-XXTXX:XX:XX.XXXZ"
}
No binary data output is involved in this operation.
Dependencies
- Requires an API key credential for authenticating with the JetNet service.
- 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 is necessary within n8n credentials.
Troubleshooting
- Missing or invalid credentials: The node requires valid API authentication tokens. Ensure that the API key credential is correctly configured and active.
- Unknown resource or operation errors: Selecting a resource or operation not supported by the node will throw an error. Confirm that "market" is selected as the resource and "getAccountInfo" as the operation.
- Network or API errors: If the JetNet API is unreachable or returns an error, the node will return a JSON error message with details. Check network connectivity and API service status.
- Malformed input data: The node expects parameters relevant to the operation; incorrect or missing parameters may cause errors.
Links and References
- JetNet Official Website — For more information about the JetNet aviation data services.
- JetNet API Documentation — (If available) Reference for API endpoints and data structures.
- n8n Documentation on Creating Custom Nodes — Guidance on node development and credential setup.