Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/guybedo/ftx-api
Ftx api java
https://github.com/guybedo/ftx-api
ftx ftx-apis java spring
Last synced: 4 days ago
JSON representation
Ftx api java
- Host: GitHub
- URL: https://github.com/guybedo/ftx-api
- Owner: guybedo
- Created: 2021-06-23T02:10:00.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2022-09-21T22:02:59.000Z (about 2 years ago)
- Last Synced: 2023-03-10T05:55:45.118Z (over 1 year ago)
- Topics: ftx, ftx-apis, java, spring
- Language: Java
- Homepage:
- Size: 50.8 KB
- Stars: 0
- Watchers: 1
- 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);
```