https://github.com/ttheek/adsbdbapi
Unofficial SDK for adsbdb
https://github.com/ttheek/adsbdbapi
adsbdb api flights
Last synced: 4 months ago
JSON representation
Unofficial SDK for adsbdb
- Host: GitHub
- URL: https://github.com/ttheek/adsbdbapi
- Owner: ttheek
- Created: 2025-06-01T16:10:52.000Z (4 months ago)
- Default Branch: main
- Last Pushed: 2025-06-01T17:17:50.000Z (4 months ago)
- Last Synced: 2025-06-02T02:39:58.036Z (4 months ago)
- Topics: adsbdb, api, flights
- Language: JavaScript
- Homepage:
- Size: 4.88 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# adsbdbapi
**Unofficial SDK for adsbdb**
This is an unofficial JavaScript SDK for the [adsbdb](https://www.adsbdb.com) API.
## Installation
Install the package using npm:
```bash
npm install adsbdbapi
```
## Usage
```javascript
import { AdsbdbAPI } from 'adsbdbapi';
const api = new AdsbdbAPI();const aircraft = await api.getAircraft('D-KIDP');
console.log(aircraft.toString());const airline = await api.getAirline('DLH');
console.log(airline.toString());const callsign = await api.getCallsign('DLH18Y');
console.log(callsign.toString());const registration = await api.modeStoN('A12345');
console.log(registration);const modeS = await api.nNumberToModeS('N12345');
console.log(modeS);```