How AI is applied across API Evangelist and APIs.io. Read my AI disclosure →
API Evangelist API Evangelist
Discovery
Learnings
Guidance
Toolbox
Alignment
API Evangelist LLC

FinGoal Fastlink API

The Link Money API permits end users to link and get data from their bank accounts. But of course, that requires a front-end interface. That's where the Fastlink comes in.The Fastlink is an example of what we call a "Linking Widget" - a small application, usually embedded via iframe in another financial application, that allows end users to interact with an aggregation service - in this case, Yodlee's Fastlink. In this documentation `Fastlink` refers specifically to `Fastlink 4`, which is the most recent version of Yodlee's Fastlink widget. We do not support older versions of Fastlink, and urge all of our onboarding customers to upgrade to Fastlink 4. To open a frontend session with Link Money's Fastlink4, you must: - Have a client registered with the Link Money API- Have client credentials for the Link Money API - Have a single registered user with the Link Money API- Have a web application (or test web application) with HTML and JavaScript where the FL4 can be embedded.### Step 1: Get an authentication tokenFirst, get an authentication token for Link Money. ```jsconst fetch = require('node-fetch'); // If using Node.js, ensure to install the 'node-fetch' package// Client credentials and other required information. We recommend storing these in a secure location, such as a password vault.const clientId = 'YOUR_CLIENT_ID';const clientSecret = 'YOUR_CLIENT_SECRET';// The URL to your authentication endpointconst tokenUrl = '{LINK_MONEY_BASE_URL}/oauth/token';// Prepare the request bodyconst requestBody = { clientId, clientSecret };// Make the HTTP POST request to obtain the JWTtry { const rawResponse = await fetch(tokenUrl, { method: 'POST', headers: { 'Content-Type': 'application/json' }, body: requestBody }); const data = await response.json(); const token = data.accessToken; // Use the access token for subsequent API requests that require authentication} catch(error) { console.error('Error fetching the access token:', error);}```### Step 2: Get the Fastlink configurationWith the `token` from the request, you can authorize a call to the Fastlink widget endpoint. ```js const fetch = require('node-fetch'); // If using Node.js, ensure to install the 'node-fetch' packageconst accessToken = "{YOUR_ACCESS_TOKEN}"; // see previous step.const getFastlinkConfigUrl = '{LINK_MONEY_BASE_URL}/yodlee/fastlink';const login_name = `any_string_of_your_choice`;try { const rawResponse = await fetch(getFastlinkConfigUrl, { method: 'POST', headers: { 'Content-Type': 'application/json', 'Authorization': `Bearer ${accessToken}` }, body: { login_name } }); const data = await response.json(); const { fastlinkConfiguration } = data; const { accessToken, fastLinkURL, configName } = fastlinkConfiguration; // Use the accessToken, fastLinkURL, and configName to embed the Fastlink widget in your application} catch(error) { console.error('Error fetching the access token:', error);}```### Step 3: Embed the Fastlink widgetThe fields provided above have supplied you with everything you need to open the Yodlee Fastlink widget in your application. To complete the integration, you will need to use the Yodlee Fastlink SDK along with the configuration provided above.```html ```### Step 4: Additional ConfigurationThe Fastlink widget can be configured to meet your specific needs. For more information on configuration options, see the [Yodlee Fastlink 4 documentation](https://developer.envestnet.com/resources/yodlee/fastlink-4/docs/documentation). The Link Money API surfaces the variables required to open any instance of Fastlink 4. However, we do not currently surface any helper functions for customized instances of Fastlink4. However, we also do not restrict you from customizing the Fastlink widget to meet your needs. If you are opening the FL4 for a specific provider, simply alter the base configuration above as you normally would.

FinGoal Fastlink API is one of 7 APIs that FinGoal publishes on the APIs.io network, described by a machine-readable OpenAPI specification.

Tagged areas include Fastlink. The published artifact set on APIs.io includes an OpenAPI specification, API documentation, an API reference, authentication docs, and rate-limit docs.

This API exposes 1 operation across 1 path. It is described by OpenAPI 3.2.0, at version 1.0.0.

Requests are made against a single base URL, https://link-money-dev.fingoal.dev.

1 operations 1 paths 0 schemas 1 POST

Metadata

The identity and technical contract details declared by the specification.

Specification
OpenAPI 3.2.0
API Version
1.0.0
Base URL
https://findmoney.fingoal.com/v3
Authentication
OAuth 2.0
Resource Areas
1

Authentication & Security 1

FinGoal Fastlink API declares 1 security scheme for authenticating requests. It supports OAuth 2.0 (BearerAuth) using the clientCredentials flow, exposing 1 scope. By default, every request must be authenticated.

Paths & Operations 1

Across 1 path, the API surfaces 1 operation — 1 POST. Each is listed below with its method, path, parameters, and response codes.

Fastlink 1

The Link Money API permits end users to link and get data from their bank accounts. But of course, that requires a front-end interface. That's where the Fastlink comes in. The Fas…

POST
/yodlee/fastlink/get
Retrieve FastLink details
getFastlinkFourDetails body → 200401403

Specification

The full machine-readable OpenAPI contract behind this narrative.

Source

fingoal-fastlink-api-openapi.yml Raw ↑

Other APIs FinGoal publishes across the network.

FinGoal Enrichment API
FinGoal User Tagging API
FinGoal Webhook Configurations API
FinGoal Client Management API
FinGoal OAUTH API
FinGoal Webhooks API
Where this information came from

This is an independent, third-party profile of FinGoal Fastlink API, published by API Evangelist. We do not operate, host, resell, or support these APIs, and we are not affiliated with or endorsed by the company unless stated above. Everything here is built from publicly available information — the company's own site, developer portal, documentation, public repositories, and the specifications it publishes for public use. Nothing is obtained by breaching a system, defeating an access control, or using credentials.

The Kin Score and Agent Readiness rating are independently calculated assessments of a company's public API artifacts, scored against a published rubric. They are not certifications, endorsements, security assessments, or audits.

Corrections, re-scores, and removal are free — no partnership or purchase required, and you do not need to justify the request. A removed company is recorded as unrated, never scored zero for having asked. Acknowledgement within one business day; removal within two.

info@apievangelist.com · Read the full data-sourcing policy →
On a security or compliance team? Put security in the subject line and you will get a person, not a form — we will tell you exactly which public URLs this profile was built from.