Skip to content
Get startedWebsite
Getting started

Introduction

Guides and API reference for Rails banking APIs—users, accounts, ledger, and official SDKs.

Getting started Introduction

Learn what Rails offers, how to run your first request, and where to read HTTP details and SDK examples.

At a glance for planning

  • What it is: banking infrastructure you call over HTTP—users, balances, and a ledger behind one API.
  • Who uses it: product and engineering teams building fintech, internal tools, or regulated money flows.
  • Why it exists: keep identity, transfers, and audit history explicit instead of hiding them inside one application database.
  • Open source: you can read and run the core services locally; the published SDKs follow the same API this site documents.

Rails is banking infrastructure: identity, accounts, and a double-entry ledger behind one gateway. Use it when you need code-driven control of users, balances, and money movement that must complete fully or not at all—without packing all of that into a single database or deployable.

How the platform is shaped

Users, accounts, and ledger run as separate services so a failure in one area is less likely to take down everything, and each service has a clear contract. Guides explain how the pieces connect and how to run samples or the open-source stack on your laptop.

How to integrate from code

Official SDKs are built from the same API description as this site, so method names and routes stay aligned with what you read here. Use guides for concepts, then open the API Reference tab for paths, request bodies, and copy-ready examples.

Choose how much you want to run locally: sample apps only, or the full open-source services.

Browse the live HTTP catalog and per-language snippets. For runnable demo servers and repo layout, follow Quick start; for install commands per language, see SDK overview.

Runnable samples: step-by-step setup is in Quick start (including the

rails-sdk-samples

folders). SDK overview lists each client package and how it maps to the HTTP API.