Klavi Link docs
Home
Link
Klaas
Navigate through spaces
⌘
K
OVERVIEW
DEVELOPER GUIDE
Overview
Concepts
How to integrate Link
API Call Sequence Diagram
Integration with WhiteLabel
WhiteLabel User Journey
WhiteLabel Web Tracking
Postman Collection
Participant Institutions
Consent Permissions
Environment
Rate Limits and Throughput
Date and Time formatting
Open Data Input Format
Codes and Errors
FAQ
WEBHOOKS
Overview
API Event Webhooks
Product Webhooks
PRODUCTS
Overview
Statement
Credit Risk
Market Intelligence
KYC
API REFERENCE
Overview
Authentication
Link
Institutions
Consents
Request Reports
Release History
Docs powered by
Archbee
API REFERENCE
Authentication
Generate Access Token
2min
Generate an access token for the application.
POST
Request
Body Parameters
accessKey
required
String
App key
secretKey
required
String
App secret key
Curl
1
curl
--location
'https://api-sandbox.klavi.ai/data/v1/auth'
\
2
--header
'Accept: application/json'
\
3
--header
'Content-Type: application/json'
\
4
--data
'{"accessKey":"string","secretKey":"string"}'
curl --location 'https://api-sandbox.klavi.ai/data/v1/auth' \ --header 'Accept: application/json' \ --header 'Content-Type: application/json' \ --data '{"accessKey":"string","secretKey":"string"}'
Responses
200
401
1
{
2
"statusCode"
:
401
,
3
"error"
:
"Unauthorized"
,
4
"message"
:
"Invalid accessKey or secretKey"
5
}
{ "statusCode": 401, "error": "Unauthorized", "message": "Invalid accessKey or secretKey" }
Response
Name
Type
Required
Description
accessToken
String
Yes
JWT token
expireIn
String
Yes
Token validity duration
Updated 29 Sep 2024
Did this page help you?
PREVIOUS
Overview
NEXT
Refresh Access Token
Docs powered by
Archbee
TABLE OF CONTENTS
POST
auth
Response
Docs powered by
Archbee