For AI agents: visit https://doc.fintecture.com/llms.txt for an index of all pages formatted in Markdown and endpoints in OpenAPI.
Request an AIS access token
- Create a Fintecture account
- Register a client application and get the credentials (i.e the
app_id) associated to it
- Request the AIS Connect URL to which you will redirect the user
- On redirection extract the
code received
- Encode your credentials using Base64 (
Basic base64({app_id}:{app_secret})) to generate the Authorization header
- Exchange the
code for an access token using the ais scope and the Authorization header
- Extract the
access_token
- Use the
access_token for every bank account endpoint requiring Bearer
- Check regularly
expires_in and before access token's expiration, ask for a new one and refresh token when needed
Recipe