API Introduction

Fluctuo Bridge is a GraphQL API.
The docs in the sidedar are generated from the endpoint. Use these docs to find out what data you can get.

All GraphQL requests should use the endpoint https://flow-api.fluctuo.com/v1. Requests should be authenticated, see authentication.

What is GraphQL?

GraphQL is a powerful query language for API.

  • It allow you to query exactly what you need, nothing more and nothing less. GraphQL queries always return predictable results. Apps using GraphQL are fast and stable because they control the data they get, not the server.
  • Get many resources in a single request
  • Strongly typed. The schema defines an API's type system and all object relationships.
  • Introspective. A client can query the schema for details about the schema.

Why we using GraphQL?

As we saw earlier, GraphQL offers many advantages to users such as introspection, the ability to precisely define the data you want and the type system.