Something like https://httpstat.us/ but for API endpoints?
Sometimes I just wanna muck about in maui but I want fake api to test with proper structures and data.
is their anything out their can help out without always creating a web api project.
Videos
Hi,
I developed an Backend with a HTTP API. Currently no real data is used in the Backend and database. To test some systems that rely on the Backend I want to fill it wiht a lot of Data. However the data should be meaningfull in a way that the entries use random date entries that span a certain time, or that some data references other data with the IDs that are returned by the API when entering a new datapoint. So not everything should be pure randomness. I am looking for a tool to automate this, and send thousend of requests.
I have a good Postman collection for all the Requests that the API supports. I was thinking that Postman would have a scripting funtionality, that lets me generate random values that I can use in the following requests, and save values from the responses to use in other requests. However, the scripting ("Tests") Seem to be limitied to only one request type.
Any other tools that are recommandable? In the end I always can just script everythin in Python, but a proper tool similar to postman would be probably preferable.
https://dummyapiI.io
I'm using this to try and create a dummy social media site for my next project. But I can't get it to work, I keep getting a 403 error which is app id not found my code is below if anyone can help or has an example of what the call should look like.
Edit: sorry about the formatting
const APPID = '000000000000aaaaaaaaaaa';
const apiCall = axios.create({ baseURL: 'https://dummyapi.io/data/v1/', param: { appid: APPID } });
const response = apiCall.get('/user?', { params:{ limit: 10 } });
so i'm making my first dummy API, i created a json file using vs code and saved it appropriately, i now opened terminal to get the file type and all, but i keep getting "not a directory" which is a problem when i copied it direclty from my system. all in all i am LOST if anyone can give me a step by step process on how to do it from the beginning i'd be glad, or at least a solution for my current problem
I have design of a dashboard and and i wanna create a simple dummy api which contains all these data which are being shown in this dashboard and and there line chart in that dashboard which needs to be interactive with data of that dummy api
So I recently started doing some API testing and all I have done is be given the endspoints and verified the response codes. What other ways have you been required to do with APIs especially in intergration testing? I would like to be able to speak to it if asked.
I have been writing websites and web apps for a while now. After playing around in many different languages and frameworks for the web, I have settled on Spring for the backend, and React for the frontend, as well as Tailwind for styling. I have written a simple CRUD REST API in Spring, and I am using Postman to send requests.
I want to know how to write tests for the API, preferably in Postman. I also want to know how the tests for APIs actually work at a more general level. I have created a simple test in postman, that checks for content type status code, and verifies the returned JSON. Is this the correct way to do it? I only ask because I though I needed to simulate every possible situation and test for it. Is this true?
Thanks.