A fully type-safe, high-level Python wrapper for the FACEIT REST API. Offers a seamless, pythonic interface for interacting with FACEIT data-featuring both synchronous and asynchronous clients, strict type checking, and robust pagination.
- Python 3.8 or higher
- High-level, idiomatic API – Interact with FACEIT as if it were a native Python service.
- Full type safety – Compatible with mypy and other type checkers.
- Synchronous & asynchronous support – Powered by httpx.
- Pydantic models – All data models inherit from pydantic.BaseModel.
- Advanced pagination – Supports both cursor-based and unix-time-based iterators.
- Flexible data access – Choose between raw data and parsed models (
.raw_players
/.players
). - Page collection utilities – Paginated responses in model mode are wrapped in an
ItemPage
collection with convenient methods:.map()
,.filter()
,.find()
, and more.
pip install faceit
Below is a minimal example demonstrating how to retrieve the complete CS2 match history for a player using the synchronous API.
Note
Currently, only the Faceit Data resource is available, and access requires a valid API key. You can obtain your API key by following the instructions in the official FACEIT documentation.
import faceit
with faceit.Faceit.data("YOUR_API_KEY") as data:
player = data.players.get("s1mple")
# Returns an ItemPage collection (fully-featured iterable)
matches = data.players.all_history(player.id, faceit.GameID.CS2)
print(f"Total CS2 matches for s1mple: {len(matches)}")
# Example: find a match by attribute
some_match = matches.find("id", "some_match_id")
print(f"First match with the given ID: {some_match or 'No match found'}")
Replace "YOUR_API_KEY"
with your personal FACEIT API key.
See additional usage examples in the examples/
directory.
This project was created out of necessity during the development of a product requiring deep integration with the FACEIT platform. Existing solutions did not offer the level of type safety, convenience, and abstraction needed for robust, maintainable code. The goal is to provide a solution approaching enterprise-level quality, while remaining accessible and useful for a wide range of users.
Warning
This library is currently in early development. Many endpoints, models, and features are not yet implemented. Webhooks, chat API, and some advanced features are not available yet. Inline code documentation is minimal, and the Sphinx documentation site is not yet ready. Expect breaking changes and incomplete coverage. Contributions and feedback are highly welcome!
- Support for more endpoints and models
- Webhooks and chat API integration
- Complete documentation and usage guides
Contributions, bug reports, and feature requests are welcome! Please open an issue or pull request on GitHub.
Apache 2.0 License
Copyright © 2025 Alexey Svidersky (zombyacoff)
See LICENSE for details.