๐ŸŒ
Free APIs
free-apis.github.io
Free APIs
An open-source collection of free APIs for web developers.
๐ŸŒ
Apipheny
apipheny.io โ€บ free-api
Free API โ€“ 90+ Public APIs For Testing [No Key] โ€“ Apipheny
Here are a few of the best, unrestricted, free APIs for testing. They donโ€™t require a key, so you can test the sample URLs out on your browser. Get a list of any or all public APIs currently cataloged in the project.
Discussions

Can anyone recommend an open API for testing purposes?
Restful booker API Restful-booker an API that you can use to learn more about API Testing or try out API testing tools against. Restful-booker is a Create Read Update Delete Web API that comes with authentication features and loaded with a bunch of bugs for you to explore. The API comes pre-loaded with 10 records for you to work with and resets itself every 10 minutes back to that default state. Restful-booker also comes with detailed API documentation to help get you started with your API testing straight away. More on reddit.com
๐ŸŒ r/QualityAssurance
17
6
October 6, 2022
Free sites for testing POST REST API calls? - Software Quality Assurance & Testing Stack Exchange
My previous company was testing only GET calls. Now I need to practice with other type of calls (POST, PUT, DELETE). I can not find any site that is free for POST API calls, and that it have up to ... More on sqa.stackexchange.com
๐ŸŒ sqa.stackexchange.com
March 17, 2021
What are your favorite free public API(Free ones)?
Reddits API of course. Just add .json or .xml to a Reddit url. More on reddit.com
๐ŸŒ r/learnpython
56
223
April 22, 2019
Tools to test a REST API?
Advanced Rest Client for Chrome More on reddit.com
๐ŸŒ r/PHP
39
22
May 31, 2013
People also ask

What are the different API key types?
ReqRes offers three API key permission levels: read-only (GET only), read/write (GET, POST, PUT, PATCH), and manage (includes DELETE operations). Use admin keys for managing collections and automations; use session tokens for per-user data access.
๐ŸŒ
reqres.in
reqres.in
ReqRes: Free REST API for Testing, Prototyping & QA ...
How does the Image to API feature work?
The Image to API feature uses AI to analyze UI screenshots and automatically generate working API endpoints. Upload a screenshot of your design (or a Figma frame), and we generate REST endpoints and schemas you can deploy. Available on all plans with different usage limits; deployment requires Pro or above.
๐ŸŒ
reqres.in
reqres.in
ReqRes: Free REST API for Testing, Prototyping & QA ...
How do custom endpoints work?
Custom endpoints let you shape responses around your collections or specific UX flows. Define the path, method, and response data-ideal for staging environments, automation callbacks, and UI experiments. Higher limits are available on Premium.
๐ŸŒ
reqres.in
reqres.in
ReqRes: Free REST API for Testing, Prototyping & QA ...
๐ŸŒ
NASA
api.nasa.gov
NASA Open APIs
Generate API Key ยท Loading signup form ยท Please enable JavaScript to signup for an api.data.gov API key
๐ŸŒ
REST API
restful-api.dev
Free Real REST API โ€“ Full CRUD Support (GET, POST, PUT, PATCH, DELETE) for Testing & Learning
Learn about restfulโ€‘api.dev - a free platform helping developers, students, and educators explore, test, and master RESTful APIs through practical tools and public endpoints.
๐ŸŒ
DEV Community
dev.to โ€บ ruppysuppy โ€บ 7-free-public-apis-you-will-love-as-a-developer-166p
7 Free Public APIs you will love as a developer๐Ÿ’– - DEV Community
February 23, 2025 - JSON Placeholder is a service that provides you with fake online REST APIs for testing and prototyping.
Find elsewhere
๐ŸŒ
Beeceptor
beeceptor.com โ€บ mock-server โ€บ explore
Free APIs for Testing
Beeceptor's Fake API server offers a range of hosted, free REST APIs available to anyone in need of simulated data for their applications or demonstrations. This resource is perfect for populating your sandbox environments, prototypes, or conducting ...
๐ŸŒ
Reqres
reqres.in
ReqRes: Free REST API for Testing, Prototyping & QA ...
POST /api/app-users/login POST /api/app-users/verify Authorization: Bearer <session_token> GET /app/collections/todos/records ... Six quick steps from zero to production-grade data and auth. ... Namespace keys, collections, logs. ... Define your JSON data model. ... Magic link creates an app user. ... Mint a session token. ... Scoped CRUD via Bearer token. ... Logs + webhooks on events. ... Use fetch(), cURL, Postman, or any HTTP client for apps, QA, or lessons.
๐ŸŒ
GitHub
github.com โ€บ public-apis โ€บ public-apis
GitHub - public-apis/public-apis: A collective list of free APIs ยท GitHub
Public API for javascript, css and font libraries on PageCDN ยท apiKey ยท Yes ยท Yes ยท Postman ยท Tool for testing APIs ยท apiKey ยท Yes ยท Unknown ยท ProxyCrawl ยท Scraping and crawling anticaptcha service ยท apiKey ยท Yes ยท Unknown ยท ProxyKingdom ยท Rotating Proxy API that produces a working proxy on every request ยท
Starred by 409K users
Forked by 44.2K users
Languages ย  Python 96.8% | Shell 3.2%
๐ŸŒ
OpenAI
openai.com โ€บ api
API Platform | OpenAI
Our API platform offers our latest models and guides for safety best practices.
๐ŸŒ
Postman
postman.com โ€บ explore
Welcome to the Postman API Network
February 2, 2026 - Accelerate API development with Postman's all-in-one platform. Streamline collaboration and simplify the API lifecycle for faster, better results. Learn more.
๐ŸŒ
Google
developers.google.com โ€บ apis-explorer
Google APIs Explorer | Google for Developers
The Google APIs Explorer allows users to try Google API methods directly from reference documentation without writing code.
Top answer
1 of 4
5

https://www.postman.com/explore

it have many collections and examples, you can create a account and fork it and use.

or create your own mock server here and learn:

https://app.mocklab.io/

2 of 4
14

As this answer on Stackoverflow states.

https://httpbin.org/ allows you to echo back your request, to see that it does what you expect.

this is the list of services

It echoes the data used in your request for any of these types:

  • https://httpbin.org/anything Returns most of the below.
  • https://httpbin.org/ip Returns Origin IP.
  • https://httpbin.org/user-agent Returns user-agent.
  • https://httpbin.org/headers Returns header dict.
  • https://httpbin.org/get Returns GET data.
  • https://httpbin.org/post Returns POST data.
  • https://httpbin.org/put Returns PUT data.
  • https://httpbin.org/delete Returns DELETE data
  • https://httpbin.org/gzip Returns gzip-encoded data.
  • https://httpbin.org/status/:code Returns given HTTP Status code.
  • https://httpbin.org/response-headers?key=val Returns given response headers.
  • https://httpbin.org/redirect/:n 302 Redirects n times.
  • https://httpbin.org/relative-redirect/:n 302 Relative redirects n times.
  • https://httpbin.org/cookies Returns cookie data.
  • https://httpbin.org/cookies/set/:name/:value Sets a simple cookie.
  • https://httpbin.org/basic-auth/:user/:passwd Challenges HTTPBasic Auth.
  • https://httpbin.org/hidden-basic-auth/:user/:passwd 404'd BasicAuth.
  • https://httpbin.org/digest-auth/:qop/:user/:passwd Challenges HTTP Digest Auth.
  • https://httpbin.org/stream/:n Streams nโ€“100 lines.
  • https://httpbin.org/delay/:n Delays responding for nโ€“10 seconds.
๐ŸŒ
Public APIs
publicapis.dev โ€บ category โ€บ test-data
Top 24 Test Data APIs For Developers - Public APIs
A community-made collection of public APIs about test data. Find these and many other great resources for your projects.
๐ŸŒ
Test Guild
testguild.com โ€บ api-testing-tools
API Testing Tools for 2025 (Top Free & Open-Source)
October 28, 2025 - Then Create a YAML test file that, for example, the test will check if the GitHub API returns a 200 status code when requesting public repositories.
๐ŸŒ
Reddit
reddit.com โ€บ r/learnpython โ€บ what are your favorite free public api(free ones)?
r/learnpython on Reddit: What are your favorite free public API(Free ones)?
April 22, 2019 -

Hello community,

I'm trying to learn API and how they work. As a starting point, I wrote few programs to work with IMDB API and google telegram API. It seemed interesting how we can query data in JSON format and work with our programs. Looking to build some interesting personal projects while learning more about APIs.

Just wondering what are your favourite public APIs and the cool programs you wrote in Python. Just looking for suggestions.

Thanks

๐ŸŒ
Free Public APIs
freepublicapis.com
Free Public APIs
A collection of Free Public APIs for Students and Developers. Tested every single day.
๐ŸŒ
PortSwigger
portswigger.net โ€บ web-security โ€บ api-testing
API testing | Web Security Academy
Machine-readable documentation is designed to be processed by software for automating tasks like API integration and validation. It's written in structured formats like JSON or XML. API documentation is often publicly available, particularly if the API is intended for use by external developers.
๐ŸŒ
Test Guild
testguild.com โ€บ 12-open-source-api-testing-tools-rest-soap-services
Top API Testing Tools for 2024 (Free & Open-Source)
May 1, 2024 - Then Create a YAML test file that, for example, the test will check if the GitHub API returns a 200 status code when requesting public repositories.