Some developers who use LinkMoney API will be coming from another aggregator, MX. Though MX's functionality is similar to what we're offering, it has a different call structure from our own. In order to minimize friction during the migration process, LinkMoney API provides endpoints that clone the MX structure and receive and return MX data.

Index

Institutions

Merchants

Users / Accounts

Users / Category(s)

Users / Holdings

Users / Members / Statements

Users / Members

Users / Transaction Rules

Users / Transactions

Users

Endpoints

How-To Guides

Since FinGoal handles user registration there is no need to add link token creation or exchange. First, you just need to register with the FinSightAPI, then you're ready to send users to the LinkMoney Web Portal with { auth headers } where they'll link their accounts.

Responses from data dumps can be sent via webhooks or you can call for the data manually via the endpoints listed below.

Pagination

All endpoints which return lists are paginated. These endpoints also support two query parameters which specify the number of records per page and the page to be returned.

Each response will include a pagination object specifying information on the total number of entries and the current page.

Parameters

For the Request

Response

Example Pagination Object

"pagination": {
  "current_page": 1,
  "per_page": 25,
  "total_entries": 2,
  "total_pages": 1
}