_ | | ___ _ __ _ _ _ __ | |_ ___ / __| '__| | | | '_ \| __/ _ \ | (__| | | |_| | |_) | || (_) | \___|_| \__, | .__/ \__\___/ __/ | | |___/|_| sentiments.xyz Founded: 2022
Hi, Welcome to cryptosentiments.xyz!
Your [fast and light-weight] REST API Ethereum token sentiment service.
You can access cryptosentiments.xyz's API component below and utilize 'jq', or any JSON parser to utilize this information to bet on [very-early] token(s) - This is like knowing Shiba Inu/Dogecoin type tokens in its early days.
Example Usage:
1. Find tokens that have strength *greater* than 20 [jq required] -
$ curl -s https://api.cryptosentiments.xyz | jq '.[] | select(.Strength > 20)'
This gives following sample JSON response -
{ "Strength": 978, "TokenName": "Wrapped Ether", "TokenContract": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", "timestamp": 1669423380 } { "Strength": 55, "TokenName": "TUF Token", "TokenContract": "0x6f8b23296394d20ec048fbdec8ebc0ca90f5c8f1", "timestamp": 1669423380 } { "Strength": 49, "TokenName": "Dragon Guy", "TokenContract": "0xee831b134a7c88a8fbd29b99286718674d492b8c", "timestamp": 1669423380 } { "Strength": 45, "TokenName": "USD Coin", "TokenContract": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", "timestamp": 1669423380 }
2. Flatten the JSON for easy view (RECOMMENDED) [jq required] -
$ curl -s https://api.cryptosentiments.xyz | jq -r '.[] |[.Strength,.TokenName,.TokenContract,.timestamp] | join(" | ")' | head -n10
This gives following sample TEXT response -
978 | Wrapped Ether | 0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2 | 1669423500 55 | TUF Token | 0x6f8b23296394d20ec048fbdec8ebc0ca90f5c8f1 | 1669423500 49 | Dragon Guy | 0xee831b134a7c88a8fbd29b99286718674d492b8c | 1669423500 45 | USD Coin | 0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48 | 1669423500 36 | Tether USD | 0xdac17f958d2ee523a2206206994597c13d831ec7 | 1669423500 35 | Smaug | 0x7316cb1f7ca817f657ad6976503bc3cf593d35e3 | 1669423500 34 | The Culture War | 0x8f7d892bb449e29b017916064619fa090263de3a | 1669423500 33 | Humanton Token | 0xa271fbf0e84b6d58a590b9cd7bb5b3a2264a432a | 1669423500 32 | xDEAD | 0x0e2757fbb4ee6d6c7843bd34e277419db78315d4 | 1669423500 31 | MemeETH | 0xfe4fdf63164adae4abf292118733faed9a256fb1 | 1669423500
3. Export the whole JSON as CSV. Easier for later analysis -
$ curl -s https://api.cryptosentiments.xyz | jq -r '.[] |[.Strength,.TokenName,.TokenContract,.timestamp] | @csv' > /tmp/hot_eth_cryptos.csv
PRO tip: visit dextools.io to validate early tokens and their liquidity once you spot a token of interest using our API.
You can contact cryptosentiments.xyz here: bot@cryptosentiments.xyz