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 for the "Market" resource and the "Get State List" operation. It retrieves a list of states relevant to the aviation industry from the JetNet database. This can be useful in scenarios where you need standardized state information for filtering, reporting, or enriching aviation-related datasets.
Practical examples include:
- Populating dropdowns or selection lists with valid state options in aviation applications.
- Validating or normalizing address data related to aviation companies, contacts, or airports.
- Integrating state-level market intelligence into broader aviation analytics workflows.
Properties
| Name | Meaning |
|---|---|
| Tool Description | Choose how to set the tool's description: either automatically based on the selected resource and operation, or manually by entering a custom description. |
| Description | (Shown only if "Set Manually" is chosen) A text field to provide a specific description of what this tool does, helping language models produce better results. 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": "market",
"operation": "getStateList",
"data": [ /* array of state objects or strings as returned by JetNet API */ ],
"timestamp": "ISO 8601 timestamp string"
}
success: Indicates whether the API call was successful.resource: The resource queried ("market").operation: The operation performed ("getStateList").data: Contains the list of states retrieved from JetNet. The exact structure depends on the API response but typically includes state names and possibly codes.timestamp: The time when the response was generated.
No binary data output is involved.
Dependencies
- Requires an active connection to the JetNet API service.
- Needs an API authentication token and security token configured via n8n credentials (an API key credential).
- The node makes HTTP requests to the JetNet customer endpoint (
https://customer.jetnetconnect.com).
Troubleshooting
- Common issues:
- Missing or invalid API credentials will cause authentication failures.
- Network connectivity problems may prevent reaching the JetNet API.
- Selecting an unsupported resource or operation will throw errors.
- Error messages:
"Unknown resource: market": Occurs if the resource parameter is incorrect or not supported."Unknown market operation: getStateList": Would occur if the operation name is misspelled or not implemented."An unknown error occurred": Generic fallback for unexpected errors; check network and credentials.
- Resolution tips:
- Verify that the API credentials are correctly set up in n8n.
- Ensure the resource is set to "market" and operation to "getStateList".
- Check internet connectivity and JetNet service status.
- Review the spelling and casing of parameters.
Links and References
- JetNet official website: https://www.jetnet.com/
- JetNet API documentation (if available internally or via support)
- n8n documentation on creating and using API key credentials: https://docs.n8n.io/credentials/api-key/