๐Ÿง What is Mockoon and why should you use it?

๐Ÿง What is Mockoon and why should you use it?

Vรญctor Manuel Caรฑada, Mobile Development - Expert

Vรญctor Manuel Caรฑada

Mobile Development - Expert

April 2, 2025

Pollogif01.gif

Imagine that you decide to open a chicken shop. ๐Ÿ”๐Ÿ”ฅ You have prepared your premises, you have the sign The Rustic Chicken, the apron well on and eager to sell. But there is a small problem... You don't have chickens yet!ย ๐Ÿ˜ฑ

So, in order not to waste time, you decide to use toy chickensย ๐Ÿค to practice serving customers, writing down orders and simulating the real sales experience. This way, when the real chickens arrive, you'll be ready to cook and sell like a pro.

Well then, Mockoonย It does the same, but with APIs. ๐Ÿ˜ƒ

**## ๐Ÿ› ๏ธ Mockoon in a nutshell ** Mockoon is a tool that allows you create fake servers on your computer. It's like a robot that responds to requests from your applications, but without the need to connect to a real API. ๐Ÿ’ก Said another way: If an app needs to communicate with a server to get data (like users, products, or messages), instead of waiting for the real server to be ready, Mockoon allows you to create a fake one and respond to the app as if it were real.

**## ๐Ÿ“ฑ How does it help in the development of mobile apps? ** If you are a mobile app developer, this has probably happened to you more than once:

ย ๐Ÿ”ด "The API is not ready, I can't test anything"

ย ๐ŸŸก "The backend is down and my app is not working"

ย ๐ŸŸข "I would like to test what happens if the API responds with an error"

This is where Mockoon comes in as a superhero. ๐Ÿฆธ

โœ… You can create custom responsesย without depending on the actual API being working.

โœ… Allows you try different scenarios, such as correct answers, errors or empty data.

โœ… Works on offline way, so you don't need internet to simulate the API.

In summary: With Mockoon, your app can continue moving forward even if the backend is under construction or has problems.ย ๐Ÿš€

๐Ÿ“ฅ Installing Mockoon on your computer

Welcome to the second step of our journey! ๐Ÿš€ Now that you know what Mockoon is, tap install it on your computer to start playing with fake servers. Let's do it step by step, as if we were cooking a Grilled Country Chicken. ๐Ÿ”ฅ๐Ÿ”

1๏ธโƒฃ Go to the official Mockoon page

Before cooking any dish, we need the ingredients. In this case, the main ingredient is Mockoon. To download it, go to its official website:

๐Ÿ”— https://mockoon.com/

You'll see a screen with something like:

image1.png

Click on the Download button and you will navigate to the next screen

image6.png

Select the installation method that suits you best, and proceed with the installation.

2๏ธโƒฃOpen Mockoon for the first time

Now that you have Mockoon installed, it's time to open it!

image4.png

๐Ÿ”ฅ An empty environment waiting for you to create your first fake server.

Creating a new environment (fake server)

Think of an "environment" in Mockoon like you digital poultry. Here you will define what type of requests it accepts and what type of responses it serves.

๐Ÿ— To create a new environment:

  1. At the top left of Mockoon, click the โž• symbol and then click the button "New local enviroment".
  2. Put the name you want, for example "API Chicken".
  3. Change the name to "API Chicken" so that it has more personality.

Now you will see that the environment has a number of puerto assigned (default, 3000). This is like the oven where our API responses will be cooked. ๐Ÿ”ฅ

๐Ÿ’ก Tip: You can change the port if you already have something running on the 3000. Simply edit it in the settings menu under the API URL section.

unnamed5.gif

Creating our first endpoint

And endpoint It's like a chicken counter. ๐Ÿช It is where customers (the apps) place their orders and wait for a response.

๐Ÿ— To add a new endpoint in Mockoon:

  1. In the left sidebar, look for the button "New route" โž• and click on it.
  2. Select HTTP router
  3. A route will be created with the name GET /.
  4. Change the name to /chickens (this means that when someone asks /chickens, we will respond with information about chickens).
  5. On the right side, where it says "Body", change the content to this JSON:
{
 "chickens": [
   { "id": 1, "name": "Country Chicken", "price": 10.99 },
   { "id": 2, "name": "Roasted chicken", "price": 12.99 }
 ]
}

IMAGEN02.gif

Understanding the key concepts

๐Ÿ“Œ Endpoints and routes:

  • They are the addresses where the apps place their orders.
  • In this case, /chickens are an endpoint.

๐Ÿ“Œ HTTP methods:**
**Methods are like the types of orders a customer can make. The most common are:

  • GET ๐Ÿ‘‰ To request information (Ex: โ€œGive me the available chickensโ€).

  • POST ๐Ÿ‘‰ To send new data (Ex: โ€œI want to add a chicken to the menuโ€).

  • PUT ๐Ÿ‘‰ To update something (Ex: โ€œChange the price of Pollo Camperoโ€).

  • DELETE ๐Ÿ‘‰ To delete something (Ex: โ€œRemove the Roasted Chicken from the menuโ€).

๐Ÿ“Œ JSON responses:

  • Servers usually respond in JSON, which is like a digital menu card.
  • In our example, the JSON returns a list of chickens with their names and prices.

๐Ÿฅณ And that's it!ย You just created your first fake server with Mockoon. ๐Ÿš€

Now, in the next step, we will learn how to try it and see if it really works. So put on your apron, this is starting to smell like freshly cooked API chicken. ๐Ÿ”๐Ÿ”ฅ

๐Ÿ— Serving answers! Creating a JSON response in Mockoon

Okay, cyber chick, you've created your first fake server and now it's time to learn how to prepare answers. We are going to make Mockoon return us data in JSON format, as if we were serving a chicken dish with garnish. ๐Ÿ”๐Ÿ”ฅ

1๏ธโƒฃ Creating a response with JSON

Mockoon allows us to define what our server will respond when someone makes a request. Let's make our chickens API return a list of products in JSON format.

๐Ÿ— Steps to define a JSON response:

  1. Make sure you have an environment created (if not, check the previous point).
  2. In the left sidebar, select the route /chickens.
  3. On the right side, look for the section "Body" and change the content to:
{
 "chickens": [
   { "id": 1, "name": "Country Chicken", "price": 10.99 },
   { "id": 2, "name": "Roasted chicken", "price": 12.99 },
   { "id": 3, "name": "Spicy Wings", "price": 8.99 }
 ]
}
  1. Save your changes and make sure the server is on.

Ready! Now when someone makes a request to http://localhost:3000/pollos, you will receive this list of chickens in JSON format. ๐Ÿš€

IMAGEN03.gif

๐Ÿšฆ HTTP status codes (200, 404, 500...) and Rules

When an app makes a request to an API, it responds with a HTTP status code. It's like when they tell you at the chicken shop:

โœ… "Here is your order" (200 OK)**
โŒ "There are no more chickens" (404 Not Found)
**๐Ÿ’ฅ "The grill caught fire" (500 Internal Server Error)

๐Ÿ”ข The most common codes in an API:

  • 200 OK ๐ŸŸข โ†’ Everything went well, here's your chicken.

  • 201 Created ๐ŸŸข โ†’ Chicken was successfully added to the menu.

  • 400 Bad Request ๐ŸŸ  โ†’ You ordered something wrong, check your order.

  • 401 Unauthorized ๐ŸŸ  โ†’ You are not allowed to order chicken here.

  • 404 Not Found ๐Ÿ”ด โ†’ That chicken does not exist.

  • 500 Internal Server Error ๐Ÿ”ด โ†’ Something exploded in the kitchen.

๐Ÿ— Define a 401 status code using a Rule for our Response

  1. Go to the route /chickens that you created
  2. We add another Response by clicking on the โž• symbol. This will create Response 2
  3. We change the status of Response 2 to 401 (Unauthorized).
  4. Now we click on Rules and add a new Rule by clicking on โž•.
  5. The condition of the Rule will be that the Authorization key with the value Bearer polloToken123 does not exist in the request header. In hat case the rule will be fulfilled and 401 will be displayed.
  6. We click on Status & Body and put this JSON to be returned in the error if the rule is met.
{
 "error": {
   "code": 401,
   "message": "Unauthorized",
   "details": "You do not have permissions to access this resource. Please verify your credentials and try again."
 }
}

Now we will call the endpoint pollos, sending the Authorization key in the header, and we will see how it responds with a 200 and the appropriate data.

Next we will call endpoint 200 again but without sending the Authorization key in the request header, and the error code 401 will be returned.

Now your server knows how to respond with different states using rules! ๐Ÿš€

unnamed1.gif

unnamed03.gif

๐ŸŽฒ Using dynamic variables in Mockoon

ยฟWhat if we want the data to be dynamic, like random names or current dates? Easy! Mockoon has "helpers" that allow generating random values.

๐Ÿ”€ Example: Generate random chicken names

  1. Go to the route /chickens.

In the section "Body", change the JSON to:

[
 {{#repeat 5}}
   {
     "id": "{{faker 'string.uuid'}}",
     "name": "{{faker 'commerce.productName'}}",
     "description": "{{faker 'commerce.productDescription'}}",
     "price": "{{faker 'commerce.price' 1 1000 2 'โ‚ฌ'}}",
     "disponible": {{faker 'datatype.boolean'}}
   }
 {{/repeat}}
]
  1. Save the changes and test the API.

๐Ÿ” Line by line analysis

  {{#repeat 5}}

๐Ÿ”น {{#repeat 5}} โ†’ It is a directive Handlebars which he says to Mockoon:

  • "Repeat this block 5 times".
  • In other words, Mockoon will generate 5 objects automatically.

"id": "{{faker 'string.uuid'}}",

๐Ÿ”น"id" โ†’ Key that represents a unique identifier for each object.
๐Ÿ”น{{faker 'string.uuid'}} โ†’ One Faker.js to generate a UUID (universal unique identifier).

Output example: "id": "550e8400-e29b-41d4-a716-446655440000"

	 "name": "{{faker 'commerce.productName'}}",

๐Ÿ”น"name"ย โ†’ Key that represents the chicken name. ๐Ÿ”น{{faker 'commerce.productName'}}ย โ†’ Use Faker.js to generate a random product name.

Output example: "name": "Deluxe Teriyaki Chicken".

	"description": "{{faker 'commerce.productDescription'}}",

๐Ÿ”น"description"ย โ†’ Key that describes the object with random text. ๐Ÿ”น{{faker 'commerce.productDescription'}}ย โ†’ Faker.js will generate a product descriptionย random.

Output example: "description": "A delicious roast chicken with natural spices and a touch of lemon."

"price": "{{faker 'commerce.price' 1 1000 2 'โ‚ฌ'}}",

๐Ÿ”น "price" โ†’ Key that represents the chicken price. ๐Ÿ”น {{faker 'commerce.price' 1 1000 2 'โ‚ฌ'}} โ†’ Will generate a random price between 1 and 1000, with 2 decimals and the currency โ‚ฌ.

Output example: "price": "โ‚ฌ15.99"

"available": {{faker 'datatype.boolean'}}

๐Ÿ”น "available" โ†’ Key that indicates whether the chicken is available or not. ๐Ÿ”น {{faker 'datatype.boolean'}} โ†’ Faker.js will generate a value true or false randomly.

Output example: "available": true

unnamed2.gif

Every time you place a request, the names and prices will change! ๐ŸŽฒ๐ŸŽ‰

๐Ÿ“Œ Other examples of dynamic variables in Mockoon:

  • Current date: {{date 'YYYY-MM-DD'}}

  • Random number: {{randomInt 1 100}}

  • Random text: {{faker.lorem.sentence}}

Now your API can respond with data dynamic and realistic. ๐Ÿš€๐Ÿ”ฅ

๐ŸŽฏ FINAL SUMMARY

โœ… We generate 5 objects automatically with random data. โœ… Each chicken has a id, name, description, price and available. โœ… Mockoon y Faker.js they allow us simulate a real API with dynamic responses. โœ… Every time you place a request, the names and prices will change! ๐Ÿ”„๐Ÿ”๐Ÿ’ธ

So every time your application calls this endpoint, you will have different chickens with different prices. It's like a digital menu of the day! ๐Ÿ—๐Ÿ˜„

๐Ÿ“ก Integrating Mockoon with your projects

Once you have your virtual chicken server up and running, you need to your application use it instead of a real API. This is useful when the backend is not ready yet or when you want to work independently.

How to point your app to Mockoon instead of a real API

When Mockoon is running, generate a local url, like::

http://localhost:3000

To make your app use Mockoon instead of a real server, change the API URL in your code:

๐Ÿ”ง Example in Kotlin (Android Retrofit):

interface ApiService {
   @GET("/chickens")
   suspend fun getChickens(): List<Pollo>
}

val retrofit = Retrofit.Builder()
   .baseUrl("http://localhost:3000/") // Point to Mockoon
   .addConverterFactory(GsonConverterFactory.create())
   .build()

๐Ÿ’ก Advice: You can use environment variables to switch between Mockoon and the real API easily.ย 

Remember that the mobile device or emulator must be connected to the same network as mockoon (via Wi-Fi for example)

Using Mockoon in development teams

If you work as a team, Mockoon is a tool ideal because it allows everyone to use the same fake API without needing a backend.

โœ… Advantages of using Mockoon as a team:

  • Each developer can work without depending on backend changes.
  • You can test how the app responds without needing an internet connection.
  • Testers can validate the application with different scenarios before the backend is ready.

๐Ÿ“ Saving and sharing your settings

After you have configured a perfect chicken server, it is important save and share this configuration with your equipment.

๐Ÿ“ค Export an environment (save your settings)

If you want to share your mock API with others, you can export it by following these steps:

  1. Open Mockoon and select the environment you want to export.

  2. Click on the three points (the more options icon) next to the environment you want to export.

  3. Select the option "Show data file in Explorer/Finder".

  4. A window will open showing the file .json of the selected environment.

  5. Copy the file and paste it in the location where you want to save it.

    • If you want, you can rename it, but make sure keep extension .json.

โœจ List! You now have an OpenAPI file that you can share with your team. ๐Ÿ’ก Advice: You can upload the configuration to GitHub so that the team always has the latest version.

๐Ÿ“ฅ Import an environment (load an existing configuration)

If someone sent you a file with a Mockoon configuration in OpenAPI, you can easily import it:

  1. Open Mockoon.
  2. In the sidebar, click on the "+" symbolย to add a new environment.
  3. In the menu that appears, select the option "Open local environment".
  4. A file explorer will open. Navigate to the path where you have the file .jsonย the .yamlย that you want to import.
  5. Select the fileย What do you want to import?
  6. Click on the button "Open".

โœจ List! Now your environment will be loaded into Mockoon and you can start using it right away. .

๐Ÿ’ก Advice: You can import multiple environments and have multiple servers simulated at the same time.

With this, now you can share your fake API like a proย and make sure your entire team uses the same settings. No excuses for chickens not working in the app! ๐Ÿ”๐Ÿš€

unnamed3.gif

๐Ÿ”โณ Simulate service response speed

Sometimes we have so much work that We do not serve orders fast enough. Poor customers! They are waiting hungry, looking at the clock, and hoping that those exquisite roasted free-range chickensย arrive faster. But, as in any business, sometimes there is a little bit of lag!

What can we do? Don't worry! Mockoon has the solution to simulate that "lag"ย in our responses and see how the system reacts.ย 

How to simulate it?

  1. In Mockoon, select the endpoint where you want to apply the lag (in our case, it can be the endpoint where we serve you a delicious Country Chicken).
  2. Click on it clock icon..

Enter the number of milliseconds (ms) that you want the response to take time to be sent.

For example, if we put 2000 ms (2 seconds), the server's response will be delayed for 2 seconds before reaching the client. Thus, our poor customers can see how the chicken takes a little longer to reach their hands. A little patience, the wait is worth it! ๐Ÿ—โณ

Why is it useful?

Simulate this response lag It is ideal for testing, for example:

  • Check how your system worksย if the response takes longer than expected.
  • View loading animations (loader)ย while the answer arrives (like someone waiting patiently for his chicken at the restaurant!).
  • Test how your app reactsย if you do not receive the response after a certain time, for example, if the client has to wait a long time or if the application needs to handle a timeoutย (which is like when the chicken takes longer than expected and the customer gets impatient ๐Ÿ˜…).

This way, you will be able to see how your application behaves in scenarios where the lag is the king of the day! And along the way, you will practice how to serve chicken more calmly (or not)! ๐Ÿ”๐Ÿ’จ

IMAGEN08.gif

๐Ÿ› ๏ธ Creating a CRUD from 0 ๐Ÿ”๐Ÿ“ก

Come on, now let's get serious! ๐Ÿ˜Ž

Let's go create an entire CRUD from scratchย in Mockoon. A CRUD is the minimum you need to manage data in an API, allowing Create, Read, Update, and Deleteย information. Let's do it with chickens! ๐Ÿ”๐Ÿ”ฅ

๐Ÿ“Œ Step 1: Create a new environment

The first thing we need is a nuevo environment where we will work.

  1. Open Mockoon.
  2. Press the symbol "+" to create a new environment.
  3. Give it an epic name like: "Chicken API".

๐Ÿ“Œ Step 2: Create a CRUD in Mockoon

In order for our chicken API to have all the CRUD operations, we are going to do the following:

  1. Go to tab "Routes".
  2. Press the symbol "+" to add a new route.
  3. Select the option "CRUD route".
  4. Give him the name of "chickens".
  5. Indicates that we are going to filter the CRUD by the id.

This will automatically generate the necessary routes to manage our chickens with the methods:

โœ… GET /chickens โ†’ Get the list of chickens. โœ… POST /chickens โ†’ Add a new chicken. โœ… GET /pollos/:id โ†’ Get a chicken by its ID. โœ… PUT /chickens/:id โ†’ Update a chicken. โœ… DELETE /chickens/:id โ†’ Eliminate a chicken.

๐Ÿ“Œ Step 3: Create the chicken database ๐Ÿฃ

Now let's go enter the data with which our CRUD will work.

  1. Go to tab "Data".
  2. Click on the symbol "+" to create a new dataset.
  3. Enter the following JSON in the data section and name it "Chickens Data":
[
 {
   "id": 1,
   "name": "feathers",
   "age": 3,
   "deGranja": true,
   "category": "A"
 },
 {
   "id": 2,
   "name": "Tweet",
   "age": 5,
   "deGranja": false,
   "category": "B"
 },
 {
   "id": 3,
   "name": "Cocoroco",
   "age": 2,
   "deGranja": true,
   "category": "A"
 },
 {
   "id": 4,
   "name": "Hen",
   "age": 7,
   "deGranja": true,
   "category": "C"
 },
 {
   "id": 5,
   "name": "Chick",
   "age": 1,
   "deGranja": false,
   "category": "B"
 }
]

๐Ÿ“Œ Data explanation:

  • id โ†’ Unique identifier of the chicken. ๐Ÿ†”
  • name โ†’ Name of the chicken. ๐Ÿ”
  • age โ†’ Age of the chicken in years. ๐Ÿ“†
  • deGranja โ†’ If the chicken comes from a farm (true the false). ๐Ÿšœ
  • category โ†’ Chicken classification (A, B the C). ๐ŸŽ–๏ธ

unnamed4.gif

๐Ÿง™โ€โ™‚๏ธ But what witchcraft is this! ๐Ÿ”ฅ๐Ÿ”

With just these steps we have created a fully functional CRUD.

Mockoon has made our lives too easy! ๐Ÿ˜ฑโœจ

Now it's time try it in action. But before doing anything...

๐Ÿ›‘ Remember to boot the server in Mockoon!**
๐Ÿ”น To do this, press the Play button โ–ถ๏ธ at the top. ๐Ÿ”น Mockoon will open the server in http://localhost:3000.

๐Ÿ“œ 1๏ธโƒฃ List current chickens

Run this request in your terminal:

curl -s http://localhost:3000/pollos/ | jq

We get the following output:

[
 {
   "id": 1,
   "name": "feathers",
   "age": 3,
   "deGranja": true,
   "category": "A"
 },
 {
   "id": 2,
   "name": "Tweet",
   "age": 5,
   "deGranja": false,
   "category": "B"
 },
 {
   "id": 3,
   "name": "Cocoroco",
   "age": 2,
   "deGranja": true,
   "category": "A"
 },
 {
   "id": 4,
   "name": "Hen",
   "age": 7,
   "deGranja": true,
   "category": "C"
 },

 {
   "id": 5,
   "name": "Chick",
   "age": 1,
   "deGranja": false,
   "category": "B"
 }
]

โž• 2๏ธโƒฃ Create a new chicken

Now let's add a new chicken to our list. ๐Ÿ”๐Ÿ”ฅ ๐Ÿ“Œ Make a request POST by running this command in your terminal:

curl -X POST -H "Content-Type: application/json" -d '{
 "name": "Nugget",
 "age": 2,
 "deGranja": true,
 "category": "B"
}' http://localhost:3000/pollos

If all goes well, Mockoon will respond with the new chicken created. โœ…

{"name":"Nugget","age":2"deGranja":true,"category":"B","id":6}

We list the list of chickens again, and we have to see with the following id the new chicken created, our delicious Nugget:

curl -s http://localhost:3000/pollos/ | jq

[
 {
   "id": 1,
   "name": "feathers",
   "age": 3,
   "deGranja": true,
   "category": "A"
 },
 {
   "id": 2,
   "name": "Tweet",
   "age": 5,
   "deGranja": false,
   "category": "B"
 },
  {
   "id": 3,
   "name": "Cocoroco",
   "age": 2,
   "deGranja": true,
   "category": "A"
 },
 {
   "id": 4,
   "name": "Hen",
   "age": 7,
   "deGranja": true,
   "category": "C"
 },
 {
   "id": 5,
   "name": "Chick",
   "age": 1,
   "deGranja": false,
   "category": "B"
 },
 {
   "name": "Nugget",
   "age": 2,
   "deGranja": true,
   "category": "B",
   "id": 6
 }
]

๐Ÿ‘€ R E A D: Finding our lost chicken ๐Ÿ”๐Ÿ”

It's time to test the Read of our CRUD!

Let's go search for a specific chick, specifically the one who has ID 3.

Who will be...? ๐Ÿค”

๐Ÿ”Ž 1๏ธโƒฃ Looking for the chicken with ID 3

We open a terminal and write:

curl -s http://localhost:3000/pollos/3 | jq

โณ Mockoon will search your data pen... and will respond to us with:

{
 "id": 3,
 "name": "Cocoroco",
 "age": 2,
 "deGranja": true,
 "category": "A"
}

๐Ÿ•ต๏ธโ€โ™‚๏ธ Aha! So the Cocoroco chicken was hiding behind ID 3!

๐Ÿ” Cocorocoย It is a young chick, all alone 2 years old. ๐Ÿก He lives on a farm, and also belongs to the category A. ๐ŸŽฉ A chicken with class!

๐Ÿ”น This method is ideal for searching for a specific chicken without having to go through the entire list.

๐Ÿ“Œ Bonus: What if we search for an ID that doesn't exist?

If we look for an ID that not in our database, for example the 99:

curl -s http://localhost:3000/pollos/99 | jq

will return us

{}

A Response can be configured to return a specific message or data that we want for a 404 Not Found code.

Brilliant! We have already tried the Read.

How about now we move on to Update to modify some chick? ๐Ÿ› ๏ธ๐Ÿ”

๐Ÿ› ๏ธ U P D A T E: Plumitas has grown up! ๐ŸŽ‰๐Ÿ”

๐ŸŽŠ What joy, what commotion! Our dear Plumage has turned one more year old! ๐ŸŽ‚๐Ÿฃ

Now He is no longer 3 years old, but 4.

It's time to update your age and leave it properly registered in our API.

๐Ÿ“œ 1๏ธโƒฃ We list the current information of Plumitas

Before making changes, let's see how you are registered right now.

We open a terminal and execute:

curl -s http://localhost:3000/pollos/1 | jq

๐Ÿ‘€ Mockoon returns us:

{
 "id": 1,
 "name": "feathers",
 "age": 3,
 "deGranja": true,
 "category": "A"
}

๐Ÿง Indeed, Plumitas was 3 years old... until today! Let's correct this fact, which is already a bigger chicken.

๐Ÿ“ 2๏ธโƒฃ We updated Plumitas' age to 4 years

To update it, we run the following command in the terminal:

curl -X PUT -H "Content-Type: application/json" -d '{
 "name": "feathers",
 "age": 4,
 "deGranja": true,
 "category": "A"
}' http://localhost:3000/chickens/1

๐Ÿ”„ Mockoon responds confirming the change:

{
 "name": "feathers",
 "age": 4,
 "deGranja": true,
 "category": "A",
 "id": 1
}

๐ŸŽฉ Aha! Now, Plumitas is officially 4 years old!

๐Ÿ“œ 3๏ธโƒฃ We check that the change has been saved

We list Plumitas again to verify that the update was done correctly:

curl -s http://localhost:3000/pollos/1 | jq

๐Ÿ‘€ Mockoon responds with:

{
 "name": "feathers",
 "age": 4,
 "deGranja": true,
 "category": "A",
 "id": 1
}

๐ŸŽ‰ Look how proud Plumitas is now that his age is correct! ๐Ÿ”๐Ÿ’ช

๐Ÿ› ๏ธ Now we know how to update a chicken's data!

What's next? Delete a chicken from our database... ๐Ÿ˜ฑ

Do we dare to try DELETE? ๐Ÿ”ฅ

๐Ÿฒ D E L E T E: Goodbye Gallina, thank you for your service ๐Ÿ˜ข๐Ÿ”

๐Ÿ˜ณ Don't look at me like that... This is a restaurant and one of our customers ordered chicken soup. We have no choice but sacrifice chickenโ€ฆ

๐Ÿ‘€ 1๏ธโƒฃ We confirm that Gallina is still in our database

Before saying goodbye to our beloved Hen, let's make sure she's still there:

curl -s http://localhost:3000/pollos/4 | jq

๐Ÿ“œ ๐Ÿ“œ Mockoon responds to us:

{
 "id": 4,
 "name": "Hen",
 "age": 7,
 "deGranja": true,
 "category": "C"
}

๐Ÿ’ก Indeed, Gallina is still among us.

**๐Ÿ—‘๏ธ 2๏ธโƒฃ We removed Gallina from the list

๐Ÿ’€ It's time...**
With a single command, Hen will go down in history (and in the pot ๐Ÿฅ˜):

curl -X "DELETE" "http://localhost:3000/pollos/4"

โš ๏ธ Mockoon doesn't tell us anything....

The silence is overwhelming. But it is the sign that Gallina is no longer with us.

๐Ÿ”Ž 3๏ธโƒฃ We verify that Hen has disappeared

To make sure that Mockoon has removed it, let's look for it again:

curl -s http://localhost:3000/chickens/4 | jq

๐Ÿ‘€ Mockoon answers:

{}

โŒ Gallina is no longer in the database.

๐Ÿ’” ย See you always, Gallina...

๐Ÿ’ฌ "Hen, you were an important part of our chicken shop. You fed many, you were a faithful companion on our menus, but now... now you are a comforting broth. Thank you for everything. Rest in peace (or in soup) ๐Ÿฅฃ."

๐Ÿ” End of Gallina's story.

๐Ÿ”ฅ And with this we end our journey through Mockoon! ๐Ÿ”ฅ

Now you have a solid foundation to continue exploring all the secretsย that this wonderful tool offers. ๐Ÿ•ต๏ธโ€โ™‚๏ธ๐Ÿ”

Remember that you can experiment, break things and fix them. Because that's how you really learn. ๐Ÿ’ช๐Ÿ˜Ž

๐ŸŒŸ May the strength of Pollo Campero be with you... ALWAYS. ๐Ÿ”๐Ÿ’ซ

Vรญctor Manuel Caรฑada, Mobile Development - Expert

Vรญctor Manuel Caรฑada

Mobile Development - Expert

I discovered my passion for programming at age 8 with an 8-bit MSX that used Basic. The computer manual helped me learn programming logic, shaping my life since then. I'm motivated by learning and sharing knowledge. I enjoy fantasy epics and psychological thrillers. I'm also passionate about motorcycle rides, seeking remote landscapes and winding roads. My programming trick: If something goes wrong, use "Pollo Campero" as the key in your debug logs.


Our latest news

Interested in learning more about how we are constantly adapting to the new digital frontier?

Turn your APIs into a growth engine in 2025
Turn your APIs into a growth engine in 2025

Tech Insight

March 11, 2025

Turn your APIs into a growth engine in 2025

The Transformative Power of AI in Health and Pharma
The Transformative Power of AI in Health and Pharma

Insight

February 18, 2025

The Transformative Power of AI in Health and Pharma

Scrum roles and responsibilities: a step towards transparency and engagement
Scrum roles and responsibilities: a step towards transparency and engagement

Insight

January 23, 2025

Scrum roles and responsibilities: a step towards transparency and engagement

How to bring your application closer to everyone
How to bring your application closer to everyone

Tech Insight

January 13, 2025

How to bring your application closer to everyone