https://github.com/guybedo/ftx-api
Ftx api java
https://github.com/guybedo/ftx-api
ftx ftx-apis java spring
Last synced: 2 months ago
JSON representation
Ftx api java
- Host: GitHub
- URL: https://github.com/guybedo/ftx-api
- Owner: guybedo
- Created: 2021-06-23T02:10:00.000Z (about 4 years ago)
- Default Branch: master
- Last Pushed: 2022-09-21T22:02:59.000Z (almost 3 years ago)
- Last Synced: 2025-04-05T15:11:20.363Z (3 months ago)
- Topics: ftx, ftx-apis, java, spring
- Language: Java
- Homepage:
- Size: 50.8 KB
- Stars: 1
- Watchers: 2
- Forks: 11
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## Java Api for FTX
samples in com.akalea.ftx.tools
```
FtxApi api = context.getBean(FtxApi.class);FtxCredentials credentials =
Optional
.ofNullable(context.getBean(FtxCredentials.class))
.orElse(
new FtxCredentials()
.setApiKey("api-key")
.setApiSecret("api-secret"));FtxAccount account = api.accounts().getAccount(credentials);
```