Nordigen

Nordigen is a global account data analytics company helping banks and lenders improve the speed and accuracy of their credit decisions.

Integrate the Nordigen API with the OpenAI (ChatGPT) API

Setup the Nordigen API trigger to run a workflow which integrates with the OpenAI (ChatGPT) API. Pipedream's integration platform allows you to integrate Nordigen and OpenAI (ChatGPT) remarkably fast. Free for developers.

Chat with OpenAI (ChatGPT) API on New Transaction from Nordigen API
Nordigen + OpenAI (ChatGPT)
 
Try it
Summarize Text with OpenAI (ChatGPT) API on New Transaction from Nordigen API
Nordigen + OpenAI (ChatGPT)
 
Try it
Classify Items into Categories with OpenAI (ChatGPT) API on New Transaction from Nordigen API
Nordigen + OpenAI (ChatGPT)
 
Try it
Translate Text with OpenAI (ChatGPT) API on New Transaction from Nordigen API
Nordigen + OpenAI (ChatGPT)
 
Try it
Create Transcription with OpenAI (ChatGPT) API on New Transaction from Nordigen API
Nordigen + OpenAI (ChatGPT)
 
Try it
New Transaction from the Nordigen API

Emit new event when a transaction occurs

 
Try it
Create Requisition Link with the Nordigen API

Create a requisition link and id to be used in other Nordigen actions. See the docs

 
Try it
Chat with the OpenAI (ChatGPT) API

The Chat API, using the gpt-3.5-turbo or gpt-4 model. See docs here

 
Try it
Delete Requisition Link with the Nordigen API

Delete requisition and its end user agreement. See the docs

 
Try it
Summarize Text with the OpenAI (ChatGPT) API

Summarizes text using the Chat API

 
Try it
Get Account Balances with the Nordigen API

Get the balances of a Nordigen account. See the docs

 
Try it

Overview of Nordigen

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:

  • Financial products that rate and compare banking services
  • Money management tools that generate personalised budgeting plans
  • Automated personal finance solutions
  • Robo advisors for financial investment advice
  • Predictive analytics for cash flow forecasting
  • Digital banking solutions for customers
  • Complex risk profiling solutions
  • Customer segmentation analytics

Connect Nordigen

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
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`,
      },
    })
  },
})

Overview of OpenAI (ChatGPT)

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:

  • Natural language understanding and sentiment analysis
  • Text-based search
  • Question answering
  • Dialogue systems and conversation agents
  • Intelligent text completion
  • Text summarization
  • Text classification
  • Machine translation
  • Language generation
  • Multi-factor authentication
  • Anomaly detection
  • Text analysis

Connect OpenAI (ChatGPT)

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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}`,
      },
    })
  },
})