FluxyAPIFluxyAPI
Getting Started

Understanding FluxyAPI

What is this thing and how does it work? (The simple version)

Welcome! If you're here, you probably want to build something amazing but don't want to write thousands of lines of code. You're in the right place.

FluxyAPI is like LEGO for the Internet. Instead of typing "code," you connect visual blocks to build powerful tools.

The Three Main Parts

Think of FluxyAPI like a restaurant:

1. The Project (The Building)

A Project is your workspace. It's where everything lives. If you're building a bot for Discord, that's one project. If you're building a weather app, that's another. Each project has its own settings, users, and "blocks."

2. The Endpoint (The Door)

An Endpoint is a specific "door" that people (or other apps) use to talk to your project.

  • The Path: This is the address on the door (e.g., /hello).
  • The Method: This is how they knock. GET is usually just asking for info, POST is giving you info.

3. The Builder (The Kitchen)

This is where the magic happens! The Builder is a big canvas where you drag and drop Blocks. Each block does one specific thing (like sending a message, checking a password, or saving data). By connecting these blocks with lines, you tell FluxyAPI exactly what to do when someone knocks on your "door."


Core Concepts (The "Jargon" translated)

WordWhat it actually means
BlockA single tool that does one job (e.g., "Send an Email"). See all blocks.
VariableA small box where you store information to use later (e.g., a user's name). Learn about variables.
SecretA special "Locked Box" for sensitive things like API keys or passwords.
FlowThe path from start to finish that your logic takes.
FunctionA group of blocks you use so often that you saved them as a "Shortcut." Read about functions.

Tip for beginners: You don't need to know how a block works inside. You just need to know what it takes in and what it gives out.

What's Next?

Ready to build? Follow our Create Your First Project guide to get your hands dirty!

On this page