Tech
October 6, 2025

API Basics - Using APIs in no-code tools

Types of API Endpoints and How to Customize Requests

Darragh Mc Kay
Founder and CEO of Noloco

Understanding the types of API endpoints is essential when building apps that interact with external services. In this post, we break down the different types—GET, POST, PUT, DELETE—and show how to use them with request bodies and query parameters using JavaScript’s fetch() API.

What Are API Endpoints?

An API (Application Programming Interface) allows two software applications to talk to each other, and API endpoints are the specific URLs where this interaction happens. Each endpoint performs a particular action, whether retrieving data, creating a new record, or deleting something from a database.

For example, a CRM might expose an endpoint like https://api.example.com/contacts to allow access to contact data. These interactions are powered by HTTP methods, most commonly the following four endpoint types:

  • GET – Retrieve data
  • POST – Create new data
  • PUT – Update existing data
  • DELETE – Remove data

Common Types of API Endpoints

These four types of API endpoints represent the standard CRUD operations—Create, Read, Update, Delete. Here's how they work and how to use them in JavaScript with the fetch() API.

GET Endpoints

GET endpoints are used to retrieve information from an API. They are the most commonly used type of endpoint and are used to retrieve data such as user information, product details, and more.

For example, let's say you want to retrieve the details of a specific product from an e-commerce API using JavaScript's fetch API. You would use the following code:


fetch("https://api.example.com/products/123", { method: "GET" })
.then((response) => response.json())
.then((data) => {
console.log(data);
});

This sends a GET request to the products/123 endpoint and returns product details in JSON format.

POST Endpoints

POST endpoints are used to send new information to an API. They are commonly used to create new resources such as creating a new user or a new product.

For example, let's say you want to create a new product in an e-commerce API using JavaScript's fetch API. You would use the following code:


const product = {
name: "Product Name",
description: "Product Description",
price: 100,
};

fetch("https://api.example.com/products", {
method: "POST",
headers: { "Content-Type": "application/json" },
body: JSON.stringify(product),
})
.then((response) => response.json())
.then((data) => {
console.log(data);
});

In this example, we're using the fetch API to send a POST request to the endpoint "https://api.example.com/products" and include the product details in the request body in the form of JSON.

This creates a new product and returns confirmation.

PUT Endpoints

PUT endpoints are used to update existing information in an API. They are similar to POST endpoints but are used to update resources instead of creating new ones.

For example, let's say you want to update the details of a specific product in an e-commerce API using JavaScript's fetch API. You would use the following code:


const updatedProduct = {
name: "New Product Name",
description: "New Product Description",
price: 120,
};

fetch("https://api.example.com/products/123", {
method: "PUT",
headers: { "Content-Type": "application/json" },
body: JSON.stringify(updatedProduct),
})
.then((response) => response.json())
.then((data) => {
console.log(data);
});

This updates product 123 with new information.

DELETE Endpoints

DELETE endpoints are used to remove resources from the system.

For example, let's say you want to delete a specific product from an e-commerce API using JavaScript's fetch API. You would use the following code:


fetch("https://api.example.com/products/123", { method: "DELETE" })
.then((response) => response.json())
.then((data) => {
console.log(data);
});

This sends a DELETE request to remove the product with ID 123.

Using Request Body and Query Parameters

In addition to understanding the different types of API endpoints, it’s equally important to know how to customize your requests using query parameters and the request body. These tools give you more control over how data is fetched or sent, allowing you to filter results, send structured data, or update only what’s necessary.

Query Parameters

These are appended to the URL to filter or sort results, often used with GET requests.


fetch(`https://api.example.com/products?category=books&price=50-100`, {
method: "GET",
})
.then((response) => response.json())
.then((data) => {
console.log(data);
});

  • ? starts the query
  • & separates multiple parameters

Request Body

Used with POST and PUT endpoints to send structured data (often JSON). This data is passed via the body key in your fetch configuration.

API Endpoints in Real-World Scenarios

Endpoint Type Typical Use Case
GET Fetching a project list in a client portal
POST Creating a new lead in a custom CRM
PUT Editing a product's status in a back office tool
DELETE Removing a user from a team intranet page

How Noloco Helps You Work with APIs

Noloco makes it easy to integrate and interact with APIs, no backend or advanced technical skills required. Whether you're a business analyst or operations manager, you can connect to external APIs and trigger actions directly from your custom apps.

Here’s what you get with Noloco:

Need help building your API-connected app? Hire a Noloco Expert

FAQs About the Types of API Endpoints

What are the different types of API endpoints?

The most common types are:

  • GET – Retrieve data
  • POST – Create data
  • PUT – Update existing data
  • DELETE – Remove data

What’s the difference between query parameters and request body?

  • Query parameters are used in the URL (usually for filtering GET requests).
  • Request bodies contain the data being sent (used in POST and PUT).

Can I use API endpoints without a backend?

Yes. With platforms like Noloco, you can trigger API calls directly from the frontend via workflows, ideal for teams without in-house developers.

What are some other resources related to API endpoint types?

What is Noloco

Noloco is a complete no-code platform that lets you build powerful business apps with integrated databases, AI-powered automation, and fully customizable logic — no code needed. Unlike simple front-end builders, Noloco gives you everything to create end-to-end solutions, from data management to intelligent workflows, all in one place.

Join thousands of users worldwide who are building client portals, CRMs, dashboards, AI-driven tools, project management systems, and more — without writing a single line of code.

Get Started for Free with AI

Author

Darragh Mc Kay
Founder and CEO of Noloco

Darragh is the founder and CEO of Noloco, a platform that empowers teams to build powerful internal tools and customer portals without writing code. With a background in software engineering, he brings a sharp product focus to everything he does—balancing deep technical understanding with a passion for intuitive user experiences. On the blog, Darragh writes about building and scaling SaaS products, no-code development, startup operations, and using AI to accelerate product development.

Your most common
questions—answered!

Who is Noloco best suited to?
+
-

Noloco is perfect for small to medium-sized businesses in non-technical industries like construction, manufacturing, and other operations-focused fields.

Do I need tech experience to use the platform?
+
-

Not at all! Noloco is designed especially for non-tech teams. Simply build your custom application using a drag-and-drop interface. No developers needed!

Is my data secure?
+
-

Absolutely! Security is very important to us. Our access control features let you limit who can see certain data, so only the right people can access sensitive information

Do you offer customer support?
+
-

Yes! We provide customer support through various channels—like chat, email, and help articles—to assist you in any way we can.

My business is growing fast—can Noloco keep up?
+
-

Definitely! Noloco makes it easy to tweak your app as your business grows, adapting to your changing workflows and needs.

Is there any training or support available to help my team get up to speed?
+
-

Yes! We offer tutorials, guides, and AI assistance to help you and your team learn how to use Noloco quickly.

Can I make changes to my app after it’s been created?
+
-

Of course! You can adjust your app whenever needed. Add new features, redesign the layout, or make any other changes you need—you’re in full control.

Ready to boost
your business?

Build your custom tool with Noloco