--- id: flask-api version: "3.1" license: BSD license_treatment: permissive maintenance: abandoned --- # Flask-API — Browsable web APIs for Flask. License: permissive · Maintenance: abandoned · Downloads: 86.9K/mo ## What it is and what it does Flask-API is a Flask extension that wraps your application to provide browsable web interfaces for your API endpoints, similar to Django REST Framework's browsable API feature. It handles content negotiation automatically, allowing clients to request JSON, HTML, or other formats through standard HTTP headers or URL parameters, and renders a human-friendly HTML interface in the browser for GET requests. The package has been in production-stable status since its early releases, but it is now abandoned—the last release was June 2023 and there have been no commits since then. It depends only on Flask itself, making installation frictionless, but you should expect no maintenance, bug fixes, or compatibility updates for newer Flask or Python versions. Use it for: - Quickly prototype and debug REST APIs by viewing responses in a browser without needing a separate API client tool. - Provide a human-readable interface for API consumers to explore endpoints and test requests interactively. - Add content negotiation to Flask apps so clients can request JSON or HTML formats without code changes. - Build internal admin or monitoring dashboards that expose API data through a browsable interface. ## Worth the install? AI-flagged interpretation of the facts above — verify before relying. Flask-API adds browsable web interfaces and content negotiation to Flask applications, making it easier to build and test REST APIs directly in the browser. No, unless you are maintaining legacy code already using Flask-API. The package is abandoned with no updates since June 2023, and there is no indication the repository is maintained. For new projects, use modern alternatives like Flask-RESTX or FastAPI that receive active maintenance and support current Python and framework versions. ## Install pip install flask-api uv add flask-api poetry add flask-api ## Installing Flask-API Before you install: Installation is straightforward with a single dependency on Flask, but the package is abandoned—no commits or maintenance since June 2023, over 1166 days ago. Use only if you accept that no updates or security patches will be forthcoming. License in practice: BSD license is permissive; you can use, modify, and distribute Flask-API freely in commercial and private projects with minimal restrictions. Quickstart: pip install Flask-API from flask import Flask from flask_api import FlaskAPI app = FlaskAPI(__name__) @app.route('/api/hello') def hello(): return {'message': 'Hello, World!'} if __name__ == '__main__': app.run() Verify before relying: - Whether Flask-API remains compatible with Flask versions released after June 2023. - Whether the browsable interface works correctly with modern browser security policies and CORS requirements. - Current state of the project repository and whether it is truly archived or simply quiet. ## Package facts - License: BSD (permissive) - Python support: unspecified - Install friction: low - Maintenance: abandoned - Downloads: 86.9K/month (top 15,000 on PyPI) - Known vulnerabilities: none known ## Tags browsable api flask, flask rest api browser, flask content negotiation, flask api debugging interface, flask web api explorer, abandoned, legacy [View on SkillFed](https://skillfed.io/packages/flask-api) · [View on PyPI](https://pypi.org/project/flask-api/)