The API uses Oauth 2.0 spec, to authenticate requests an authorization bearer token is needed first. To get client id and client secret head to https://dash.nordigen.com/api-keys.
Fetch bearer authorization token.
POST
REQUEST BODY SCHEMA: application/json
Parameters:
audience
: string, requiredclient_id
: string, requiredclient_secret
: string, requiredgrant_type
: string, requiredRequest Example
Response Example
Nordigen API offers a variety of account statement analysis tools which can be applied
To process statement accounts they first need to be uploaded. After upload processing record will be created, returning request id in the response. After this it needs to be passed to request operation endpoint in which necessary operations are specified.
POST
REQUEST BODY SCHEMA: multipart/form-data
Parameters:
input
: file(s) buffer, requiredRequest Example
Response Example
PUT
REQUEST BODY SCHEMA: application/json
Parameters:
country
: string, requiredoperations
: array of strings, required. Operation keyword is defined for each analysis product in their documentation.params
: object, optional. Specifies configuration for analysis products, details will be specified under the respective product documentationuse_webhook
: boolean, optional. Enables webhook after finishing processingRequest Example
Response Example
Retrieve requested analysis products result. If processing is not finished when this endpoint is called it will return status processing
and it should be requested again until status completed
is returned. Once it is completed this endpoint will also return requested products, their responses can be seen in respective product documentation pages.
GET
Parameters:
request_id
: string, requiredRequest Example
Response Example
This is relevant for credit scoring product, use this request to see what scoring models are available for you.
GET
Request Example
curl -X GET \
https://api.nordigen.com/v2/available-models \
-H 'Authorization: Bearer YOUR_ACCESS_TOKEN'
Response Example
GET
Parameters:
country
: string, required. Two letter country code filter for categoriesRequest Example
Response Example
Setting up webhooks allows receiving status update for processing records once they are completed.
POST
REQUEST BODY SCHEMA: application/json
Parameters:
auth_method
: string, optional. Authentication Method to use for webhook, possible options are OAuth2
and Basic Auth
auth_password
: string, optional. Used for Basic Auth as passwordauth_username
: string, optional. Used for Basic Auth as usernamecallback_url
: string, required. URL to which POST webhook request will be sentoauth_audience
: string, optional. Used for Oauth2 auth flow as audience when fetching tokenoauth_client_audience
: string. optional. Used for Oauth2 as scope when fetching tokenoauth_client_id
: string, optional. Used for Oauth2 as client id when fetching tokenoauth_client_secret
: string, optional. Used for Oauth2 as client secret when fetching tokenoauth_token_url
: string, optional. Used for Oauth2 as location from which to fetch tokenRequest Example
Response Example