INFINITY APIS


Channel's geo and language: not specified, not specified
Category: not specified



Channel's geo and language
not specified, not specified
Category
not specified
Statistics
Posts filter


Join Our Bots Channel:

@InfinityTechBots


Our Old channels were reported and got deleted by telegram
join here soon new projects comming


You can also use the php version of the api:

API URL:
https://api.infinityhackers.tech/geminiapi.php?prompt=hello

Share:
@InfinityTechAPIs


✌️INTRODUCING THE GEMINI AI API

How to use:

http://geminigptapi.vercel.app/api?prompt=hello

You can use it in WhatsApp bots,telegram bots,website and any other applicable platform 😂


Share our channel with your friends and family.

@InfinityTechHub
@InfinityTechAP
Is
API BY @RealOptimusPrimeBot


Image background remover api.

Note: it downloads extra large files on the server,if you are using free servers like vercel, seenode or render,it might take a long time to deploy or even fail to deploy. Use your own server or run on local host.

How to run on local host.
create a python file and name it
main.py
inside
main.py add the following code:
import requests

from PIL import Image

from rembg import remove

from flask import Flask, jsonify, request

from io import BytesIO

import os

import tempfile

def upload_to_telegraph(image_path):

with open(image_path, 'rb') as file:

response = requests.post('https://telegra.ph/upload', files={'file': file})

image_url = response.json()[0]['src']

return image_url

app = Flask(__name__)

@app.route("/")

def homepage():

return " /remove?img={img_url} "

@app.route("/remove")

def remove_bg():

url = request.args.get("img")

req = requests.get(url)

input_image = Image.open(BytesIO(req.content))
output_image = remove(input_image)
with tempfile.NamedTemporaryFile(delete=False, suffix=".png") as tmp_file:
output_image.save(tmp_file.name, format="PNG")
tmp_file_path = tmp_file.name
try:
image_link = upload_to_telegraph(tmp_file_path)
finally:
os.remove(tmp_file_path)
return jsonify({"status": 200, "image": f"https://telegra.ph{image_link}"})
if __name__ == "__main__":

app.run(host="0.0.0.0", port=5000)

Now create a file named requirements.txt
Inside it add this:

flask
rembg
Pillow
requests

Now open your terminal and navigate to where the files are located.
First install the modules used.

pip3 install -r requirements.txt
Wait until the process is done.

Now run the main file

python3 main.py
Now open any of your browser and type the following.
http://127.0.0.1:5000/remove?image={your image link here}
This will return an image link from telegra.ph

To get image links, use this bot:
https://t.me/OPTIMUSSERVICESBOT

Share with credits
Channel:
@TheInfinityApisHub
Owner: @RealOptimu
sPrimeBot


🔥 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 @TheInfinityAPIsHub @TheInfinityHackers @ @RealOptimusPrimeBot 🚀


API: All countries data
This country data is scraped from a website

package main



import (

"encoding/json"

"fmt"

"log"

"net/http"



"github.com/gocolly/colly"

"github.com/gorilla/mux"

)





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:

1. Make sure you have go installed on your machine.
2. Create a folder . Call it whatever you want.
3. Create main.go file in the folder you created.
4. Open folder in terminal(linux and macos) or cmd(windows)
5.Initialize Go to this folder,to do so, run this:
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: @RealOptimusPrimeBot
Channel: @TheInfinityAPIsHub
get code on github:
https://github.com/NotoriousBigg/CountriesAPI


Share with credits


🔥 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
@TheInfinityAPIsHub @TheInfinityHackers @RealOptimusPrimeBot 🚀


HERE IS A LIST OF OUR APIs

1. WALLPAPERS API
📸(click here)

https://infinitywallpapersapi.vercel.app/

2.FAKE DATA API
📱(click here)

https://fakedataapi.vercel.app/

3.VIRTUAL NUMBERS API
📳(click here)

https://infinityvirtualnumbersapi.vercel.app/

4. MOD APKS API
🛒(click here)

https://infinitymodsapi.vercel.app/

5. DOMAIN NAME CHECKER API
🌐 (click here)

https://domaincheckapi.vercel.app/

If you want a specific API, you can request on the chat group or message me on private
@RealOptimusPrimeBot

This message will
be updated once I add a new API.

Thanks for your support


💸 INTRODUCING THE MOD APKS API 💸


API FEATURES:
💐Get direct details about and app and the direct download link 🟠
💐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 URL:
https://infinitymodsapi.vercel.app/

All the endpoints are clearly described in the home page.

👉More API updates and New APIs Soon 🔜

ENJOY.
😁

🚀 API BY @TheInfinityAPIsHub @TheInfinityHackers @RealOptimusPrimeBot 🚀


⚠️INTRODUCING THE VIRTUAL PHONE NUMBERS API⚠️


API FEATURES:
💐Gets virtual numbers and messages sent to the number🥰
💐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 URL:
https://infinityvirtualnumbersapi.vercel.app/

All the endpoints are clearly described in the home page.

👉More API updates and New APIs Soon 🔜

ENJOY.
😁

✈️API BY @TheInfinityAPIsHub @TheInfinityHackers @RealOptimusPrimeBot ✈️


⚠️INTRODUCING THE FAKE DATA API⚠️


API FEATURES:
💐Generates a fake user profile🥰
💐Display it in Json Format.🦊
💐It has only one Endpoint.📺
✔️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 URL:
https://fakedataapi.vercel.app/

🦊ENDPOINT:
/fake?locale={your_country_here}
Visit the homepage to know the list of supported locales.

👉More API updates and New APIs Soon 🔜

ENJOY.
😁

✈️API BY @TheInfinityAPIsHub @TheInfinityHackers @RealOptimusPrimeBot ✈️


⚠️INTRODUCING OUR VERY FIRST OWN API⚠️

4k Wallpapers API

API FEATURES:
💐Get Wallpaper from www.4kwallpapers.com🥰
💐Display Them in Json Format.🦊
💐It has only one Endpoint.📺
✔️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 URL:
https://infinitywallpapersapi.vercel.app/

🦊ENDPOINT:
/get?category={category_name}

👉More API updates and New APIs Soon 🔜

ENJOY.
😁

✈️API BY @TheInfinityHackers @RealOptimusPrimeBot ✈️

13 last posts shown.

37

subscribers
Channel statistics