--- id: robotframework-requests version: "0.9.7" license: MIT license_treatment: permissive maintenance: aging --- # robotframework-requests — Robot Framework keyword library wrapper around requests License: permissive · Maintenance: aging · Downloads: 1.9M/mo ## What it is and what it does RequestsLibrary is a Robot Framework library that wraps the Python Requests HTTP client to let you write API tests in Robot Framework's keyword-driven syntax rather than Python. It provides keywords for GET, POST, PUT, DELETE and other HTTP methods, with support for sessions, authentication, headers, JSON bodies, and status code assertions. You write tests in Robot Framework's plain-text or YAML format, and the library handles the HTTP communication and response parsing. The library is designed for teams automating REST API testing without writing Python code. Version 0.9 introduced sessionless keywords (you can call GET directly without creating a session first) and implicit status code assertions that fail the test automatically on error responses. It depends on robotframework and requests, both widely-used packages, and installs as a pure Python wheel with low friction. Use it for: - Automated REST API contract testing in Robot Framework test suites without Python scripting. - End-to-end testing of microservices by making HTTP calls and validating JSON responses. - Load and smoke testing of HTTP endpoints using Robot Framework's parallel execution. - Integration testing that chains multiple API calls with session management and response reuse. - Non-developer QA teams writing API tests in keyword-driven syntax instead of code. ## Worth the install? AI-flagged interpretation of the facts above — verify before relying. RequestsLibrary wraps the Python Requests library to provide HTTP API testing keywords for Robot Framework, enabling test automation of REST endpoints without writing Python code. Yes, with conditions. RequestsLibrary is stable and permissively licensed, making it a solid choice for Robot Framework-based API testing. However, the aging maintenance status (last release April 2024, no commits since December 2025) means you should verify compatibility with your current Robot Framework and Python versions before adopting it in new projects. If you're already using Robot Framework and need to test HTTP APIs, it remains a practical option; if you're starting fresh, check whether the project is still actively maintained. ## Install pip install robotframework-requests uv add robotframework-requests poetry add robotframework-requests ## Installing robotframework-requests Before you install: Low install friction with a pure-Python wheel distribution. Maintenance status is aging—last release was 2024-04-07 and no commits since 2025-12-17—but the package remains in production/stable classification and is actively used (top 5000 on PyPI). License in practice: MIT license is permissive; you can use, modify, and distribute this package with minimal restrictions, making it safe for commercial and proprietary projects. Quickstart: pip install robotframework-requests *** Settings *** Library RequestsLibrary *** Test Cases *** Simple GET Test ${response}= GET https://www.google.com Status Should Be 200 ${response} Requires Robot Framework to be installed; Robot Framework itself is a runtime dependency. Verify before relying: - Whether the aging maintenance status (859 days since last release) affects compatibility with current Python or Robot Framework versions. - Current test coverage and whether sessionless keywords (introduced in 0.9) are fully stable. ## Package facts - License: MIT (permissive) - Python support: unspecified - Install friction: low - Maintenance: aging - Downloads: 1.9M/month (top 5,000 on PyPI) - Known vulnerabilities: none known ## Tags robot framework http testing, rest api test automation, robot framework requests library, http client for robot framework, api testing keywords, robot framework rest client, automated http testing, robot-framework, rest-api-testing, test-automation [View on SkillFed](https://skillfed.io/packages/robotframework-requests) · [View on PyPI](https://pypi.org/project/robotframework-requests/)