XurTracker.com is a comprehensive service that provides Destiny 2 players with real-time information on Xur's location and inventory. This repository contains the source code for the XurTracker website, Twitter bot, and API.
This project powers the XurTracker.com website, a Twitter bot that tweets Xur's current location and inventory every weekend, and a public API that allows developers to access Xur's data programmatically.
- Website: A user-friendly interface for viewing Xur's current location, inventory, and historical data.
- Twitter Bot: Automatically tweets updates about Xur's location and inventory as soon as the information becomes available.
- API: Provides developers with programmatic access to Xur's data, enabling integration with other applications or tools.
- Data Collection: Aggregates data from various sources to provide the most accurate and up-to-date information.
The XurTracker API allows developers to fetch real-time and historical data about Xur's location and inventory.
https://api.xurtracker.com/api
- GET
/get-legendary-weapons
: Retrieve legendary weapons for sale. - GET
/get-armor?class=<class_str>
: Retrieve armor for sale for the specified class. - GET
/get-dates
: Retrieve Xur's arrival and departure dates. - GET
/get-location
: Retrieve Xur's current location.
curl https://api.xurtracker.com/api/get-location
{
"LandingZone": "Bazaar, The Tower",
"Location": "The Last City",
"Planet": "Earth"
}
We welcome contributions from the community! If you have suggestions, bug reports, or improvements, feel free to open an issue or submit a pull request.
- Fork the repository.
- Create a new branch (
git checkout -b feature-branch
). - Make your changes and commit them (
git commit -m 'Your commit message'
). - Push to the branch (
git push origin feature-branch
). - Open a pull request.