JetNet icon

JetNet

Interact with JetNet API for aviation industry data

Overview

This node integrates with the JetNet API to retrieve detailed aviation industry data. Specifically, the "Aircraft" resource with the "Get by Registration" operation allows users to fetch comprehensive information about an aircraft using its registration number. This is useful for aviation professionals, brokers, maintenance teams, or analysts who need quick access to aircraft details based on registration identifiers.

Practical examples:

  • A broker verifying aircraft details before a transaction.
  • Maintenance teams retrieving aircraft status and history by registration.
  • Aviation analysts gathering data for market research or fleet management.

Properties

Name Meaning
Registration Number The unique registration number of the aircraft to look up.

Output

The node outputs JSON data containing detailed information about the aircraft corresponding to the provided registration number. The structure typically includes identification, status, maintenance, ownership, and other relevant aircraft data as returned by the JetNet API.

If multiple records are returned (though unlikely for a single registration), each will be output as a separate JSON item.

The node does not output binary data.

Dependencies

  • Requires an active connection to the JetNet API service.
  • Requires an API authentication token credential configured in n8n to authorize requests.
  • The base URL for API requests is https://customer.jetnetconnect.com.
  • The node uses HTTP GET method to fetch data from the endpoint /api/Aircraft/getRegNumber/{registrationNumber}/{apiToken}.

Troubleshooting

  • Common issues:

    • Invalid or missing registration number input will cause the API request to fail.
    • Expired or incorrect API authentication token will result in authorization errors.
    • Network connectivity issues may prevent reaching the JetNet API endpoint.
  • Error messages:

    • Authorization errors typically indicate problems with the API token; verify and update credentials.
    • "Not Found" or empty responses may mean the registration number does not exist in the database.
    • Timeout or network errors suggest connectivity problems; check internet access and firewall settings.
  • Resolution tips:

    • Ensure the registration number is correctly formatted and valid.
    • Confirm that the API key credential is properly set up and has necessary permissions.
    • Retry after resolving any network or credential issues.

Links and References

Discussion