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
The Chat API, using the gpt-3.5-turbo
or gpt-4
model. See docs here
Delete requisition and its end user agreement. See the docs
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`,
},
})
},
})
The OpenAI API is a powerful tool that provides access to a range of
high-powered machine learning models. With the OpenAI API, developers can
create products, services, and tools that enable humanizing AI experiences, and
build applications that extend the power of human language.
Using the OpenAI API, developers can create language-driven applications such
as:
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
openai: {
type: "app",
app: "openai",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.openai.com/v1/models`,
headers: {
Authorization: `Bearer ${this.openai.$auth.api_key}`,
},
})
},
})