Official Python client for the Furnilytics API.
Furnilytics provides structured market and industry data for the furniture sector via a simple API.
pip install furnilyticsCreate an API key in your Furnilytics dashboard and set it as an environment variable:
export FURNILYTICS_API_KEY="your_api_key"from furnilytics import Client
client = Client()
data = client.get("furniture/chairs/market_size")
print(data)The get method follows the structure:
client.get("<topic>/<subtopic>/<dataset>", **params)Example with parameters:
data = client.get(
"furniture/chairs/market_size",
country="US",
year=2024
)Full API documentation, available datasets, and usage guides can be found at:
https://www.furnilytics.com/api/
If you encounter a bug or have a feature request, please open an issue in this repository.
For general questions, contact support via the Furnilytics website.
This project is licensed under the MIT License.