Nordigen is a global account data analytics company helping banks and lenders improve the speed and accuracy of their credit decisions.
Create a requisition link and id to be used in other Nordigen actions. See the docs
Add or update a single record in your Pipedream Data Store.
Delete requisition and its end user agreement. See the docs
Add or update multiple records to your Pipedream Data Store.
What You Can Build with the Nordigen API
The Nordigen API allows developers to easily access financial data and use it
to build the solutions their customers need. With the Nordigen API, you can
build innovative solutions such as:
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
nordigen: {
type: "app",
app: "nordigen",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://ob.nordigen.com/api/v2/institutions/`,
headers: {
Authorization: `Bearer ${this.nordigen.$auth.oauth_access_token}`,
"accept": `application/json`,
},
})
},
})
With the Data Stores API, you can build applications that:
export default defineComponent({
props: {
myDataStore: {
type: "data_store",
},
},
async run({ steps, $ }) {
await this.myDataStore.set("key_here","Any serializable JSON as the value")
return await this.myDataStore.get("key_here")
},
})