Videos
Can anyone recommend an open API for testing purposes?
Free sites for testing POST REST API calls? - Software Quality Assurance & Testing Stack Exchange
What are your favorite free public API(Free ones)?
Is there a public API for the Rust Server list?
What are the different API key types?
How does the Image to API feature work?
How do custom endpoints work?
The title more or less, at the moment I am learning rest sharp, but I have not found a decent open API for writing tests, something that isn't too easy nor too difficult.
Preferably with some POST and GET methods, so I can write tests for getting data I posted.
Also if anyone can link me a example of how to develop a API testing framework, how to order namespaces any such :)
Thanks in advance.
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/
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.
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