First call
Follow our step-by-step guide to make your first query on our API.
Follow our step-by-step guide to make your first query on our API.
Introduction
Attention!Before starting the integration, you must have your API keys.
How to authenticate?
To authenticate, you will need to obtain an access token.
We will next use your Sandbox token, which you should already be in possession of at this point.
How to consult any information?
-
As an example, access the /banks endpoint documentation.
-
In "Authentication", enter the accesstoken generated in the authentication API, in the format (Bearer xxxx_token_xxxx ) and click "Try it!".
-
If everything goes as expected, you will receive an HTTP Status 200 response, with the list of banks.
Example of a 200 response with the list of some banks returned by the endpoint /banks
Congratulations, you made your first query on our API!
If you want to test this request in Postman, we leave a cURL model below.
curl --request GET \
--url https://dev-api.fabank.com.br/api/v1/banks \
--header 'Authorization: Bearer {access_token}' \
--header 'accept: application/json'Updated about 1 year ago
