Community chat: https://t.me/hamster_kombat_chat_2
Twitter: x.com/hamster_kombat
YouTube: https://www.youtube.com/@HamsterKombat_Official
Bot: https://t.me/hamster_kombat_bot
Game: https://t.me/hamster_kombat_bot/
Last updated 3 months, 2 weeks ago
Your easy, fun crypto trading app for buying and trading any crypto on the market.
📱 App: @Blum
🆘 Help: @BlumSupport
ℹ️ Chat: @BlumCrypto_Chat
Last updated 3 months, 1 week ago
Turn your endless taps into a financial tool.
Join @tapswap_bot
Collaboration - @taping_Guru
Last updated 5 days, 5 hours ago
? INTRODUCING THE CRYPTO API ?
API FEATURES:
?Get details about crypto trends ?
?Display it in Json Format.?
✔️Can be used with any programming language?
?Can be used To create other websites, Bots and many other applications. ?
DETAILS DISPLAYED BY THE API:
{
"coin\_name": "string",
"coin\_symbol": "string",
"data": {
"change\_in\_24\_hours": "string",
"market\_cap": "string",
"price": "string",
"volume\_in\_24\_hours": "string"
},
"index": "int"
},
?Language Used: Python ?
✔️ Status: Working ?
?API URL:
https://infinitycryptoapi.vercel.app/price
For Pagination:?
https://infinitycryptoapi.vercel.app/price?page={page_index}
?More API updates and New APIs Soon ?
ENJOY. ?
? API BY @TheInfinityAPIs @TheInfinityHackers @EscaliBud ?
Visit our new blog??
Still under development but it is still visible and has some fresh contents.
https://www.infinityhackers.tech/
Share with your friends?
www.infinityhackers.tech
Infinity Tech - Latest in Technology and Innovation
Explore the latest in technology, innovation, and trends in the tech industry. Stay updated with our expert insights, reviews, and guides on software, gadgets, AI, and more.
API: All countries data
This country data is scraped from a website
```
package main
import (
"encoding/json"
"fmt"
"log"
"net/http"
)
type Product struct {
Title string json:"title"
Capital string json:"capital"
Population string json:"population"
Area string json:"area"
}
func scrapeWebsite() ([]Product, error) {
var products []Product
url := "https://www.scrapethissite.com/pages/simple/"
collector := colly.NewCollector()
collector.OnError(func(r *colly.Response, e error) {
fmt.Println("Error occurred!:", e)
})
collector.OnHTML(".col-md-4.country", func(e *colly.HTMLElement) {
product := Product{
Title: e.ChildText("h3"),
Capital: e.ChildText(".country\-capital"),
Population: e.ChildText(".country\-population"),
Area: e.ChildText(".country\-area"),
}
products = append(products, product)
})
err := collector.Visit(url)
if err != nil {
return nil, err
}
collector.Wait()
return products, nil
}
func getScrapedDataHandler(w http.ResponseWriter, r *http.Request) {
data, err := scrapeWebsite()
if err != nil {
http.Error(w, "Oops, An error occured", http.StatusInternalServerError)
return
}
w.Header().Set("Content-Type", "application/json")
json.NewEncoder(w).Encode(data)
}
func main() {
r := mux.NewRouter()
r.HandleFunc("/api/countries", getScrapedDataHandler).Methods("GET")
log.Println("Server running on port 8080")
log.Fatal(http.ListenAndServe(":8080", r))
}
```
To run on local host:
go mod init countriesapi
6.Now run the main.go file.
go run main.go
Now test your api by visiting
http://localhost:8080/api/countries
Code by: @EscaliBud
Channel: @TheInfinityAPIs
get code on github:
https://github.com/NotoriousBigg/CountriesAPI
Share with credits
All countries API Codes comming.
API DEATAILS:
Gets all countries of the continent
Gets all countries capital cities
Gets all countries population
Gets all countries Area
Share our channel with your friends?
@TheInfinityAPIs
? INTRODUCING THE DOMAIN NAME CHECKER API ?
API FEATURES:
? Checks the available domain names from a keyword.?
? Returns a list of domain names together with their status(Whether available or Unavailable.✅
?Display it in Json Format.?
?Can be used with any programming language?
?Can be used To create other websites, Bots and many other applications. ?
?Language Used: Python ?
✔️ Status: Working ?
API ENDPOINT:?
https://domaincheckapi.vercel.app/lookup?domain={domain-name-keyword}
EXAMPLE:?
https://domaincheckapi.vercel.app/lookup?domain=TheInfinityAPIs
?More API updates and New APIs Soon ?
ENJOY. ?
?API IDEA BY: @darktechke
? API BY @TheInfinityAPIs @TheInfinityHackers @EscaliBud ?
??How about Infinity API Keys???
Give APIs Ideas??
**HERE IS A LIST OF OUR APIs
Thanks for your support**
? WELCOME TO FREE PROXY BOT! ?
✔️ BOT USERNAME: @InfinityProxyBot
❤️ JUST CLICK ON THE 'GET FREE PROXIES' BUTTON TO RECEIVE 5 FREE PROXIES.?
?EVERY TIME YOU CLICK THE BUTTON, YOU GET RANDOM PROXIES, THEREFORE, EACH USER GETS FREE PROXY DIFFERENT FROM ALL OTHER USERS?
? THATS IT, ENJOY AND SHARE TO YOUR FRIENDS ?
? Need help? Contact the dev for assistance! ??
✔️Bot Crafted By : @EscaliBud
Community chat: https://t.me/hamster_kombat_chat_2
Twitter: x.com/hamster_kombat
YouTube: https://www.youtube.com/@HamsterKombat_Official
Bot: https://t.me/hamster_kombat_bot
Game: https://t.me/hamster_kombat_bot/
Last updated 3 months, 2 weeks ago
Your easy, fun crypto trading app for buying and trading any crypto on the market.
📱 App: @Blum
🆘 Help: @BlumSupport
ℹ️ Chat: @BlumCrypto_Chat
Last updated 3 months, 1 week ago
Turn your endless taps into a financial tool.
Join @tapswap_bot
Collaboration - @taping_Guru
Last updated 5 days, 5 hours ago