Here is a curated list of 10 public APIs you can use for testing REST functionality:
A fake REST API for testing and prototyping.
Base URL: https://jsonplaceholder.typicode.com
GET /posts
- Get all postsPOST /posts
- Create a new postPUT /posts/1
- Update a postDELETE /posts/1
- Delete a postProvides weather data for a given location.
Base URL: https://api.openweathermap.org/data/2.5
GET /weather?q=London&appid=YOUR_API_KEY
- Current weatherGET /forecast?q=London&appid=YOUR_API_KEY
- 5-day forecastProvides information about countries.
Base URL: https://restcountries.com/v3.1
GET /all
- Get all countriesGET /name/{name}
- Get a specific countryGET /region/{region}
- Get countries by regionReturns random cat-related facts.
Base URL: https://catfact.ninja
GET /fact
- Get a random cat factGET /facts?limit=5
- Get multiple cat factsAn API to search and retrieve a list of public APIs.
Base URL: https://api.publicapis.org
GET /entries
- Get a list of APIsGET /entries?category=animals
- Search APIs by categoryGenerates random activities for people.
Base URL: https://www.boredapi.com/api
GET /activity
- Get a random activityGET /activity?participants=1
- Filter by participantsA dummy API for CRUD operations.
Base URL: https://dummy.restapiexample.com/api/v1
GET /employees
- Get all employeesPOST /create
- Create a new employeePUT /update/1
- Update an employeeGenerates random user profiles.
Base URL: https://randomuser.me/api
GET /
- Get a random userGET /?results=5
- Get multiple usersProvides random images of dogs by breed.
Base URL: https://dog.ceo/api
GET /breeds/image/random
- Get a random dog imageGET /breed/{breed}/images
- Get images by breedProvides data about Rick and Morty characters, episodes, and locations.
Base URL: https://rickandmortyapi.com/api
GET /character
- Get all charactersGET /character/1
- Get a single characterGET /episode
- Get all episodes