web scraping API to gather info about aircraft from JetPhotos and FlightRadar https://www.jetapi.dev
  • Go 56.3%
  • HTML 18.4%
  • CSS 13.4%
  • JavaScript 11.2%
  • Makefile 0.7%
Find a file
2026-04-18 17:12:00 +00:00
cmd/jetapi only log not bad requests 2026-04-18 17:12:00 +00:00
internal add query params to only scrape jp or fr 2025-06-16 13:03:17 -05:00
ui add query params to only scrape jp or fr 2025-06-16 13:03:17 -05:00
.gitignore refactor scrapers 2025-06-13 12:33:42 -05:00
go.mod refactor scrapers 2025-06-13 12:33:42 -05:00
go.sum refactor scrapers 2025-06-13 12:33:42 -05:00
LICENSE add license 2025-06-22 23:44:18 -05:00
Makefile makefile 2025-06-13 12:47:29 -05:00
README.md update readme 2025-06-13 19:35:27 -05:00

jetapi

JetAPI

An API to gather information from JetPhotos and FlightRadar24.

Documentation

See the documentation for more information regarding the usage of the API.

Getting Started On Your Own

After cloning the project, one can simply run

make run

to build and run the program.

If you do not have make,

go run ./cmd/jetapi

suffices.

Then one can visit localhost:8080 to view the documentation and build a query for your local instance.

More

The API works best with commercial airliners. GA aircraft may cause JSON encoding errors due to the variability in FlightRadar's page. Registrations not found also return JSON encoding errors.

You may also specify the port and host by setting the PORT and HOST environment variables respectively:

HOST=0.0.0.0 PORT=4000 make run

will serve to 0.0.0.0:4000.