FluxyAPIFluxyAPI
Getting Started

Intro to Endpoints

What are endpoints? (The Doorbell Analogy)

Welcome to FluxyAPI! Before you start building, it's important to understand the most common word you'll hear: Endpoint.

What is an Endpoint?

In simple terms, an Endpoint is a specific URL that your app uses to ask for information or send data.

Imagine you're at a Restaurant:

  • The API is the Menu (it tells you what you can order).
  • The Endpoint is a specific Dish on the menu (e.g., "Burger #5").
  • The Request is you telling the waiter what you want.
  • The Response is the food being brought to your table.

The Four Key Terms

TermWhat it isExample
APIThe whole system of rules.The Restaurant itself.
EndpointA specific address for a specific task./get-user-profile
RequestThe message you send to the endpoint."Show me John's profile."
ResponseThe answer you get back."Here is John's data: { age: 25 }"

Why do they matter?

Endpoints are the "connectors" of the internet. When you click a button on a website, it usually sends a Request to an Endpoint, which then sends back a Response to update your screen.

With FluxyAPI, you are the chef! You decide what each endpoint does and what it says back.

Fun Fact: Most modern apps (like Discord, Instagram, or Spotify) use thousands of endpoints every second to keep everything in sync!

Ready to build?

Now that you know what an endpoint is, it's time to create your own!

  1. If you haven't made a Project yet, start here: Create Your First Project.
  2. If you're ready to build a Door, go here: Create Your First Endpoint.

On this page