Updated Readme to include Python and Javascript example code

This commit is contained in:
Vivek Teega 2021-06-23 22:16:50 +05:30
parent 5b6b93ab76
commit 7a72ee2cc4

View File

@ -49,6 +49,24 @@ Output:
}
```
Python example code
```
response = requests.get('https://ranchimallflo.duckdns.org/api/v1.0/getTokenList')
if response.status_code == 200:
json_response = response.json()
elif response.status_code == 404:
print('Not Found.')
```
Javascript example code
```
fetch('https://ranchimallflo.duckdns.org/api/v1.0/getTokenList'){
.then(response => response.json())
.then(data => console.log(data));
}
```
### Information about a token
Get information about a token on the FLO blockchain
```
@ -67,6 +85,23 @@ Output:
}
```
Python example code
```
response = requests.get('https://ranchimallflo.duckdns.org/api/v1.0/getTokenInfo?token=rmt')
if response.status_code == 200:
json_response = response.json()
elif response.status_code == 404:
print('Not Found.')
```
Javascript example code
```
fetch('https://ranchimallflo.duckdns.org/api/v1.0/getTokenInfo?token=rmt'){
.then(response => response.json())
.then(data => console.log(data));
}
```
### Information about a token's transactions
Get information about a token's related transactions on the blockchain
```
@ -99,6 +134,22 @@ Output:
}
```
Python example code
```
response = requests.get('https://ranchimallflo.duckdns.org/api/v1.0/getTokenTransactions?token=rmt')
if response.status_code == 200:
json_response = response.json()
elif response.status_code == 404:
print('Not Found.')
```
Javascript example code
```
fetch('https://ranchimallflo.duckdns.org/api/v1.0/getTokenTransactions?token=rmt'){
.then(response => response.json())
.then(data => console.log(data));
}
### Information about a token's address balances
Get information about a token's address balances
```