Socket
Socket
Sign inDemoInstall

od-flight-stats

Package Overview
Dependencies
48
Maintainers
1
Versions
5
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    od-flight-stats

API Flight that support search flight through flight stats


Version published
Weekly downloads
0
decreased by-100%
Maintainers
1
Install size
7.73 MB
Created
Weekly downloads
 

Readme

Source

od-flight-stats

API Flight that support search flight through flight stats

Quick Start

The following example shows how to use od-flight-stats to check

// Initial api with myAppId and myAppKey
const api = new FlightStats(myAppId, myAppKey);

const options = {
    airlineCode: 'AA',
    flightNumber: '110',
    date: new Date(),
    isArr: true, // Optional, default false
    isLocalTime: true // Optional, default false(UTC)
};
const result = await api.lookUp(options);

Response

{
    request:
    {
        airline: { requestedCode: 'AA', fsCode: 'AA' },
        flight: { requested: '110', interpreted: '110' },
        date:
        { year: '2019', month: '6', day: '25', interpreted: '2019-06-25' },
        utc: { requested: 'true', interpreted: true },
        airport: { },
        codeType: { },
        extendedOptions: { },
        url:
        'https://api.flightstats.com/flex/flightstatus/rest/v2/json/flight/status/AA/110/dep/2019/06/25/'
    },
    appendix:
    {
        airlines: [[Object], [Object], [Object], [Object], [Object]],
        airports: [[Object], [Object]],
        equipments: [[Object]]
    },
    flightStatuses:
    [{
        flightId: 1004580175,
        carrierFsCode: 'AA',
        flightNumber: '110',
        departureAirportFsCode: 'ORD',
        arrivalAirportFsCode: 'FCO',
        departureDate: [Object],
        arrivalDate: [Object],
        status: 'S',
        schedule: [Object],
        operationalTimes: [Object],
        codeshares: [Array],
        delays: [Object],
        flightDurations: [Object],
        airportResources: [Object],
        flightEquipment: [Object]
    }]
}

Keywords

FAQs

Last updated on 29 Jul 2019

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc