Notice: This page requires JavaScript to function properly.
Please enable JavaScript in your browser settings or update your browser.
Lära Introduction to APIs | Introduction to APIs
Workflow Automation with Make.com

bookIntroduction to APIs

Note
Definition

An API (Application Programming Interface) is a set of rules that allows one software system to request data or actions from another system in a structured and predictable way.

APIs are one of the most overcomplicated topics in automation. Documentation often jumps straight into diagrams and technical language, which does not help when your goal is simply to build something practical in Make.

In simple terms, an API is a standard way for two software tools to communicate and exchange data. You see APIs in action whenever:

  • a CRM sends data into an email platform;
  • Make pulls weather, payment, company, or social data;
  • a tool says we integrate with X.

In most cases, that simply means the tool connects to another service's API.

A helpful mental shortcut is this: An API is a menu of actions and data a service allows you to access, plus strict rules for how you request them.

Base URL
expand arrow

The main address of the API. Example idea: api.example.com/v1

Endpoint
expand arrow

The specific resource or action you want to access. Examples:

  • /weather
  • /contacts
  • /invoices

Combined with the base URL, this forms a complete request address.

Method
expand arrow

Defines what action you want to perform.

The most common methods in Make:

  • GET retrieves data
  • POST creates or submits data

In most automation workflows, GET is used most often.

Parameters
expand arrow

Extra details that define your request.

Example idea: A weather API may require a city name or coordinates. These are often passed as query values.

Headers
expand arrow

Metadata about the request.

This is commonly where authentication lives, such as an API key or access token.

Body (for POST requests)
expand arrow

When creating or updating data, you usually send a JSON body.

APIs are not complicated because they are advanced. They feel complicated because they are strict.

Once you understand the structure, base URL, endpoint, method, parameters, headers, and body, API workflows stop feeling like guesswork and start feeling predictable and controllable.

question mark

Which statement best describes what an API is?

Select the correct answer

Var allt tydligt?

Hur kan vi förbättra det?

Tack för dina kommentarer!

Avsnitt 3. Kapitel 1

Fråga AI

expand

Fråga AI

ChatGPT

Fråga vad du vill eller prova någon av de föreslagna frågorna för att starta vårt samtal

Suggested prompts:

Can you explain what each part of an API request (base URL, endpoint, method, etc.) means?

Can you give an example of a simple API request?

How do I know which actions or data a service's API allows me to access?

bookIntroduction to APIs

Svep för att visa menyn

Note
Definition

An API (Application Programming Interface) is a set of rules that allows one software system to request data or actions from another system in a structured and predictable way.

APIs are one of the most overcomplicated topics in automation. Documentation often jumps straight into diagrams and technical language, which does not help when your goal is simply to build something practical in Make.

In simple terms, an API is a standard way for two software tools to communicate and exchange data. You see APIs in action whenever:

  • a CRM sends data into an email platform;
  • Make pulls weather, payment, company, or social data;
  • a tool says we integrate with X.

In most cases, that simply means the tool connects to another service's API.

A helpful mental shortcut is this: An API is a menu of actions and data a service allows you to access, plus strict rules for how you request them.

Base URL
expand arrow

The main address of the API. Example idea: api.example.com/v1

Endpoint
expand arrow

The specific resource or action you want to access. Examples:

  • /weather
  • /contacts
  • /invoices

Combined with the base URL, this forms a complete request address.

Method
expand arrow

Defines what action you want to perform.

The most common methods in Make:

  • GET retrieves data
  • POST creates or submits data

In most automation workflows, GET is used most often.

Parameters
expand arrow

Extra details that define your request.

Example idea: A weather API may require a city name or coordinates. These are often passed as query values.

Headers
expand arrow

Metadata about the request.

This is commonly where authentication lives, such as an API key or access token.

Body (for POST requests)
expand arrow

When creating or updating data, you usually send a JSON body.

APIs are not complicated because they are advanced. They feel complicated because they are strict.

Once you understand the structure, base URL, endpoint, method, parameters, headers, and body, API workflows stop feeling like guesswork and start feeling predictable and controllable.

question mark

Which statement best describes what an API is?

Select the correct answer

Var allt tydligt?

Hur kan vi förbättra det?

Tack för dina kommentarer!

Avsnitt 3. Kapitel 1
some-alt