Authentication
API users authenticate their requests by passing their access token in the Authorization
header with the Bearer
prefix.
All API requests are made to the following endpoint:e
https://api.fordefi.com/
When making a request, the value for the Authorization
header must be in the format Bearer {access token}
. For example:
Bearer eyJhbGciOiJFZERTQSIsImtpZCI6ImZ3MFc3aVpocUc0SUEzaXV4ZmhQIiwidHlwIjoiSldUIn0.eyJpc3MiOiJodHRwczovL2FwaS5mb3JkZWZpLmNvbS8iLCJzdWIiOiI2MDlmODVjMi00OWJmLTQwMzItOGM5Yy00NDMyZGEzMzE4MGVAZm9yZGVmaSIsImF1ZCI6WyJodHRwczovL2FwaS5mb3JkZWZpLmNvbS9hcGkvIl0sImV4cCI6MjAxNzI5MDg4NCwiaWF0IjoxNzAxOTMwODg0LCJqdGkiOiJlM2RmNDE0ZS03M2U3LTRkMWEtYmJjYy1iYThiZTE4NDhiOTMifQ.JodHRwczovL2FwaS5mb3JkZWZpLmNvbS8iLCJzdWIiOiI2MDlmODVjMi00OWJmLTQwMzItOGM5Yy00NDMyZGEzMzE4MGVAZm9yZGVmaSIsImF1ZCI6WyJ
All API requests must be made over HTTPS. Calls made over plain HTTP or without theAuthorization
header will fail.
Further Authorization of Sensitive Operations
API requests for sensitive operations, such as transaction signing, require an additional authentication layer. Learn more.