Flex Coder
1.98K subscribers
246 photos
47 videos
2 files
215 links
Uɴʟᴇᴀsʜ Tʜᴇ Pᴏᴡᴇʀ Oғ Bᴏᴛ Cᴏᴅɪɴɢ. Gᴇᴛ Fʀᴇᴇ Bᴏᴛ & Cᴏᴅᴇ Oɴ Oᴜʀ Cʜᴀɴɴᴇʟ 🧑‍💻

🔰 Oᴜʀ Yᴏᴜᴛᴜʙᴇ Cʜᴀɴɴᴇʟ: https://www.youtube.com/@Flex_Coder

📞 Cᴏɴᴛᴀᴄᴛ Us Oɴ: @Flex_Hide
🌐 Oɴʟɪɴᴇ Fʀᴏᴍ: 3\07\2024
Download Telegram
Flex Coder
💬 Advice Api 🧑‍💻 Code: export default async function handler(req, res) {   const response = await fetch("https://api.adviceslip.com/advice");   const data = await response.json();   res.status(200).json({ advice: data.slip.advice }); } 👀 View Details & Response…
🧑‍💻 Kuch Din Mein Aapko Bhoto Video Channel Pe Upload Karne Wala Hu Q Ki Mera Target Hai End Of This Month Mujhe 500+ Subscriber Karna Hai.

🤗 So Aagr Aapko Mere Content Aacha Lagtha Hai Mujhe Support Karna Chathe Ho

Subscribe Karo
1👍1
Aaj Ki New Api Video Thodi Late Aagye. Q Ki Aaj Thoda Busy Hu 🙂

Tab Tak Durse Api Dekho:
Playlist
👍21
💫 Anime Detail Api

🧑‍💻 Code:

import fetch from 'node-fetch';

export default async function handler(req, res) {
  const { name } = req.query;
  if (!name) {
    return res.status(400).json({ error: 'Name is required' });
  }

  const searchUrl = `https://api.jikan.moe/v4/anime?q=${encodeURIComponent(name)}&page=1`;
  const searchResponse = await fetch(searchUrl);
  const searchData = await searchResponse.json();

  if (searchData.data && searchData.data.length > 0) {
    const anime = searchData.data[0];
    return res.status(200).json({
      title: anime.title,
      episodes: anime.episodes,
      genre: anime.genres.map(g => g.name).join(', '),
      synopsis: anime.synopsis,
      image_url: anime.images.jpg.image_url
    });
  }

  return res.status(404).json({ error: 'Anime not found' });
}

👀 View Details & Response 👇
View Now

📹 Setup Video:
https://youtu.be/kIcl52nHVzY
👍51👏1
Flex Coder
https://youtu.be/kIcl52nHVzY
Aagr Dekha Nhi Hoga To Dekh Lo. Or Subscribe Be Kar Lena 😔
👍2🔥1
Kal Konsi Api Lau 🤔?
(Which Api Should I Bring Tommorrow 🤔?)
Final Results
27%
🗺️ IP + Device Verification Api
73%
📱 Temporary Number Api
👍1😍1
Flex Coder
Kal Konsi Api Lau 🤔?
(Which Api Should I Bring Tommorrow 🤔?)
😔 Sorry For Telling You. But Unfortunately Temporary Number Api Is Like SMSFetcherAPI.

👉 Like Enter Share Number From Particular Website And It Will Fetch Message Of That Number.

🙂 But I Am Trying My Best To Find Temporary Number Api And Which Will Be Post Soon
👍2😍1
🌎 IP ADDRESS INFORMATION API

🧑‍💻 Half Code:

const fetch = require('node-fetch');

module.exports = async (req, res) => {
  const ip = req.headers['x-forwarded-for'] || req.connection.remoteAddress;
  const response = await fetch(`http://ip-api.com/json/${ip}`);
  const data = await response.json();

👀 View Details & Response 👇
View Now

📹 Setup Video:
https://youtu.be/BlRC31IXZfg
👍31😁1
🤣 Random Joke API

🧑‍💻 Code:

export default async function handler(req, res) {
  const response = await fetch("https://official-joke-api.appspot.com/random_joke");
  const joke = await response.json();
  res.status(200).json(joke);
}

👀 View Details & Response 👇
View Now

📹 Setup Video:
https://youtu.be/BWS8Lve3wKY
👏2👍1
This media is not supported in your browser
VIEW IN TELEGRAM
Stay safe and participate in the drill 🇮🇳
👍2😁1
📚 DICTIONARY API

🧑‍💻 Code:

export default async function handler(req, res) {
  const { word } = req.query;
  const response = await fetch(`https://api.dictionaryapi.dev/api/v2/entries/en/${word}`);
  const data = await response.json();
  res.status(200).json(data);
}

👀 View Details & Response 👇
View Now

📹 Setup Video:
https://youtu.be/P1eDLzq4qu0
👍3👌1
Today No Api Video 😔

Share Idea For Api 👇
👍3🥰2😁2
🤗 Working On Member Suggested Api. So There Api Setup Video Will Be Coming Soon.

You Can Also Suggest Your Api. But It Will Take Time To Develop👇
😁3👍2
📣 Cyber Attack Alert!

Several malicious files named "Dance of the Hilary" and "Tasksche.exe" are being circulated.

Do not open any unknown or suspicious files, disable auto download from all of your social media platforms.

Please share this warning with your elders, friends, and family to keep them safe online.

It's best to stay away from unknown people's who send u any link file or ask anything stay safe secure and private!
👍2😍2
👩‍👩‍👧‍👧 Create Telegram Channel Member Checker Api

🧑‍💻 Half Code:

import express from "express";
import fetch from "node-fetch";

const app = express();

app.get("/", async (req, res) => {
  const { token, channel, userid } = req.query;
  if (!token || !channel || !userid) return res.json({ error: "Missing parameters" });

  const channels = Array.isArray(channel) ? channel : channel.split(",");
  const result = [];

  const botInfo = await fetch(`https://api.telegram.org/bot${token}/getMe`).then(r => r.json());
  const botId = botInfo.result.id;

  for (const chan of channels) {
    const adminCheck = await fetch(`https://api.telegram.org/bot${token}/getChatMember?chat_id=${chan}&user_id=${botId}`).then(r => r.json());

    if (!adminCheck.ok || !["administrator", "creator"].includes(adminCheck.result.status)) {
      result.push({ channel: chan, error: "Bot is not admin" });

👀 View Details & Response 👇
View Now

📹 Setup Video:
https://youtu.be/UB6Yv_qhMrc
🤩2👍1
New Video Uploaded 👇
https://youtu.be/BA8MNt6mLdw

⚠️ Note: Like, Share And Subscribe
2👍2
🎵 Spotify API - Full Source Code Pack 🚀

📥 Selling spotify official api, with various features like:
👉 Search Music
👉 Music Lyrics
👉 Suggest Song
👉 Download Song
👉 Artist Details
👉 Use Any Song/Playlist
🛠 Tech Used:
👉 Github Account
👉 Vercel Account
👉 Spotify Account (optional)
What You Get 🤔?
👉 1 zip file
👉 3 full detail setup video
👉 1 Api Endpoint Message
👉 Contact Support

⁉️ Try & View Api

🔸 Search Section:

🔍 Search Song: https://spotify-vert-nine.vercel.app/search?q=<Song_Name>
👁 Ex: https://spotify-vert-nine.vercel.app/search?q=Believer

🔍 Search Track:https://spotify-vert-nine.vercel.app/search?url=<Spotify_Url>
👁 Ex: https://spotify-vert-nine.vercel.app/search?url=https://open.spotify.com/track/0pqnGHJpmpxLKifKRmU6WP?si=64adfb9775c44b86

🔸 Track Section:

🔍 Track Details: https://spotify-vert-nine.vercel.app/track?song=<Spotify_Url>
👁 Ex: https://spotify-vert-nine.vercel.app/track?song=https://open.spotify.com/track/0pqnGHJpmpxLKifKRmU6WP?si=64adfb9775c44b86

🔸 Download Section:

🔍 Song Download: https://spotify-vert-nine.vercel.app/download?song=<Spotify_Url>
👁 Ex: https://spotify-vert-nine.vercel.app/download?song=https://open.spotify.com/track/0pqnGHJpmpxLKifKRmU6WP?si=64adfb9775c44b86

🔸 Suggest Song Section:

🔍 Suggest Song (without limit): https://spotify-vert-nine.vercel.app/suggest?q=<Song_Name>
👁 Ex: https://spotify-vert-nine.vercel.app/suggest?q=Believer

🔍 Suggest Song (with limit): https://spotify-vert-nine.vercel.app/suggest?q=<Song_Name>
👁 Ex: https://spotify-vert-nine.vercel.app/suggest?q=Believer&limit=1

🔍 Suggest Song (with offset): https://spotify-vert-nine.vercel.app/suggest?q=<Song_Name>
👁 Ex: https://spotify-vert-nine.vercel.app/suggest?q=Believer&offset=5

🔸 Song Lyrics Section:

🔍 Song Lyrics: https://spotify-vert-nine.vercel.app/lyrics?q=<Song_Name>
👁 Ex: https://spotify-vert-nine.vercel.app/lyrics?q=Believer

🔍 Song Lyrics:https://spotify-vert-nine.vercel.app/lyrics?url=<Spotify_Url>
👁 Ex: https://spotify-vert-nine.vercel.app/lyrics?url=https://open.spotify.com/track/0pqnGHJpmpxLKifKRmU6WP?si=64adfb9775c44b86
💸  Price: 399
📞 Contact Me: @Flex_Hide
🙏3👍2
New Video Uploaded 👇
https://youtu.be/hBKoENMO_Og

⚠️ Note: Like, Share And Subscribe
👍1🔥1