Skip to content
Get startedWebsite

API Reference

Libraries

npm install railsinfra
implementation("com.rails.api:rails-java:0.0.1")
implementation("com.rails.api:rails-kotlin:0.0.1")
go get -u 'github.com/railsinfra/rails-go@v0.2.0'
git clone git@github.com:railsinfra/rails-csharp.git
dotnet add reference rails-csharp/src/Rails

API Overview

Users

Users

Create user
POST/api/v1/users

Accounts

Accounts

Create account
POST/api/v1/accounts
List accounts
GET/api/v1/accounts
Retrieve account
GET/api/v1/accounts/{id}
Update account status
PATCH/api/v1/accounts/{id}
Close account
DELETE/api/v1/accounts/{id}
Deposit into account
POST/api/v1/accounts/{id}/deposit
Withdraw from account
POST/api/v1/accounts/{id}/withdraw
Transfer between accounts
POST/api/v1/accounts/{id}/transfer

Transactions

Transactions

List transactions by organization
GET/api/v1/transactions
List account transactions
GET/api/v1/accounts/{account_id}/transactions
Retrieve transaction
GET/api/v1/transactions/{id}