Getting Started
Core Concepts
Resources
Account & Access
Data Domains
Help Center
Support
With the Fiskil Sandbox, you can develop and integration test your application in an environment that mirrors production. The sandbox supports unlimited End-Users and consents with realistic data across both Banking and Energy domains.
In the steps below we'll create a new consent using Fiskil Console and then fetch sample data via the API.
Ensure you have access to Fiskil Console. To set up the sandbox for your team or manage permissions, contact customer support.
If you haven't already, navigate to API Keys in the console to create a key pair. Note your client_id
and client_secret
for authentication.
Exchange your credentials for an access token
using the /token
endpoint.
curl --location --request POST 'https://api.fiskil.com/v1/token' \ --header 'Content-Type: application/json' \ --header 'Accept: application/json' \ --data-raw '{ "client_id": "${client_id}", "client_secret": "${client_secret}" }'
Create a new End-User to test the APIs. For simplicity, create a single consent per End-User. You'll need a name
, email
and phone
. Use the access token
from the previous step.
curl --location --request POST 'https://api.fiskil.com/v1/token' \ --header 'Content-Type: application/json' \ --header 'Accept: application/json' \ --data-raw '{ "client_id": "${client_id}", "client_secret": "${client_secret}" }'
From End-Users in the console, select your user and click Create Auth Session. Open the generated link in a new browser window.
Grant access by selecting Allow. You'll then see the provider selection screen.
Select the relevant sandbox provider (Bank or Energy Retailer).
Enter any email you can access and click get code to receive a one-time password.
Choose one of the available accounts for your consent. After selecting the account, confirm the consent by clicking Confirm and share. You have successfully created a consent in the sandbox environment.
For example account details, see the sub‑pages below for Banking and Energy sample accounts.
Was this page helpful?