created with 💖 by magneum
With Magneum you can fetch different types of informations without needing to install any dependencies or worrying about servers or configurations.
Just use any method to fetch the api endpoints and you will be delighted with a perfect constructed object as a response from that endpoint of choice.
Magneum has many endpoints like animation, anime, hentai, youtube music, youtube video, youtube search, nsfw and many more upcoming.
● Api/Manga
- Informator:
Use this module to get all information about any manga from myanimelist.
● endpoint: /api/manga?q=
● example: /api/manga?q=death note
- Code Examples
Examples are demonstrated using javascript & typescript.// ?q= is the querry that api/manga takes
// Method 2 (Request)
const request = require("request");
request({
method: "GET",
url: "https://magneum.vercel.app/api/manga?q=death note",
headers: {
Accept: "application/json",
"Content-Type": "application/json",
},
},
(error, response) => {
if (error) console.error(error);
console.log(response.body);
});
// ?q= is the querry that api/manga takes
// Method 1 (Axios)
const axios = require("axios");
/** @type {import axios from "axios"} */
axios.get("https://magneum.vercel.app/api/manga?q=death note")
.then(function (response) {
console.log(response.data);
})
.catch(function (error) {
console.error(error);
});
// ?q= is the querry that api/manga takes
// Method 3 (Unirest)
const unirest = require("unirest");
unirest.post("https://magneum.vercel.app/api/manga?q=death note")
.headers({ Accept: "application/json", "Content-Type": "application/json" })
.then((response) => {
console.log(response.body);
});
● Api/Emotions
- Informator:
Use all below available emotions endpoints to get .gif .png & .jpeg links.
● endpoint: /api/emotions?q=
● example: /api/emotions?q=smile
● querries available:
bite, bonk, bored, confused, cry, cuddle, dance,
happy, highfive, hug, kick, kill, kiss, nervous, pat, poke, punch, sad, scream
slap, smile, stare, wave, wink, yeet, thinking
- Code Examples
Examples are demonstrated using javascript & typescript.// ?q= is the querry that api/emotions takes
// Method 1 (Axios)
const axios = require("axios");
/** @type {import axios from "axios"} */
axios.get("https://magneum-api.vercel.app/api/emotions?q=smile")
.then(function (response) {
console.log(response.data);
})
.catch(function (error) {
console.error(error);
});
// ?q= is the querry that api/emotions takes
// Method 2 (Request)
const request = require("request");
request({
method: "GET",
url: "https://magneum-api.vercel.app/api/emotions?q=smile",
headers: {
accept: "application/json",
"Content-Type": "application/json",
},
},
(error, response) => {
if (error) console.error(error);
console.log(response.body);
});
// ?q= is the querry that api/emotions takes
// Method 3 (Unirest)
const unirest = require("unirest");
unirest.post("https://magneum-api.vercel.app/api/emotions?q=smile")
.headers({ accept: "application/json", "Content-Type": "application/json" })
.then((response) => {
console.log(response.body);
});
● Api/Anime
- Informator:
Use this module to get all information about any anime.
● endpoint: /api/anime?q=
● example: /api/anime?q=death note
- Code Examples
Examples are demonstrated using javascript & typescript.// ?q= is the querry that api/anime takes
// Method 1 (Axios)
const axios = require("axios");
/** @type {import axios from "axios"} */
axios.get("https://magneum.vercel.app/api/anime?q=death note")
.then(function (response) {
console.log(response.data);
})
.catch(function (error) {
console.error(error);
});
// ?q= is the querry that api/anime takes
// Method 2 (Request)
const request = require("request");
request({
method: "GET",
url: "https://magneum.vercel.app/api/anime?q=death note",
headers: {
accept: "application/json",
"Content-Type": "application/json",
},
},
(error, response) => {
if (error) console.error(error);
console.log(response.body);
});
// ?q= is the querry that api/anime takes
// Method 3 (Unirest)
const unirest = require("unirest");
unirest.post("https://magneum.vercel.app/api/anime?q=death note")
.headers({ accept: "application/json", "Content-Type": "application/json" })
.then((response) => {
console.log(response.body);
});
● Api/YouTube_Dl
- Informator:
Use this module to get youtube direct audio & video download links.
● endpoint: /api/youtube_dl?q=
● example: /api/youtube_dl?q=ncs music 5 minutes&quality=1080p
● example: /api/youtube_dl?q=https://youtu.be/3gxus8LnMfI&quality=1080p
QUALITY:
&quality=1080p
&quality=720p
&quality=480p
&quality=360p
&quality=240p
(audio) &quality=128kbps
- Code Examples
Examples are demonstrated using javascript & typescript.// ?q= is the querry that api/youtube_dl takes
// Method 1 (Axios)
const axios = require("axios");
/** @type {import axios from "axios"} */
axios.get("https://magneum.vercel.app/api/youtube_dl?q=ncs 2min song&quality=1080p")
.then(function (response) {
console.log(response.data);
})
.catch(function (error) {
console.error(error);
});
// ?q= is the querry that api/youtube_dl takes
// Method 2 (Request)
const request = require("request");
request({
method: "GET",
url: "https://magneum.vercel.app/api/youtube_dl?q=ncs 2min song&quality=1080p",
headers: {
accept: "application/json",
"Content-Type": "application/json",
},
},
(error, response) => {
if (error) console.error(error);
console.log(response.body);
});
// ?q= is the querry that api/youtube_dl takes
// Method 3 (Unirest)
const unirest = require("unirest");
unirest.post("https://magneum.vercel.app/api/youtube_dl?q=ncs 2min song&quality=1080p")
.headers({ accept: "application/json", "Content-Type": "application/json" })
.then((response) => {
console.log(response.body);
});
● Api/YouTube_Sr
- Informator:
Use this module to get everything from youtube video meta informations.
● endpoint: /api/youtube_sr?q=
● example: /api/youtube_sr?q=ncs music 5 minutes
● example: /api/youtube_sr?q=https://youtu.be/3gxus8LnMfI
- Code Examples
Examples are demonstrated using javascript & typescript.// ?q= is the querry that api/youtube_sr takes
// Method 1 (Axios)
const axios = require("axios");
/** @type {import axios from "axios"} */
axios.get("https://magneum.vercel.app/api/youtube_sr?q=ncs 2min song")
.then(function (response) {
console.log(response.data);
})
.catch(function (error) {
console.error(error);
});
// ?q= is the querry that api/youtube_sr takes
// Method 2 (Request)
const request = require("request");
request({
method: "GET",
url: "https://magneum.vercel.app/api/youtube_sr?q=ncs 2min song",
headers: {
accept: "application/json",
"Content-Type": "application/json",
},
},
(error, response) => {
if (error) console.error(error);
console.log(response.body);
});
// ?q= is the querry that api/youtube_sr takes
// Method 3 (Unirest)
const unirest = require("unirest");
unirest.post("https://magneum.vercel.app/api/youtube_sr?q=ncs 2min song")
.headers({ accept: "application/json", "Content-Type": "application/json" })
.then((response) => {
console.log(response.body);
});
● Api/Pinterest
- Informator:
Use this module to get high quality wallpapers from pinterest.
● endpoint: /api/pinterest?q=
● example: /api/pinterest?q=cat
- Code Examples
Examples are demonstrated using javascript & typescript.// ?q= is the querry that api/pinterest takes
// Method 1 (Axios)
const axios = require("axios");
/** @type {import axios from "axios"} */
axios.get("https://magneum.vercel.app/api/pinterest?q=cobra")
.then(function (response) {
console.log(response.data);
})
.catch(function (error) {
console.error(error);
});
// ?q= is the querry that api/pinterest takes
// Method 2 (Request)
const request = require("request");
request({
method: "GET",
url: "https://magneum.vercel.app/api/pinterest?q=cobra",
headers: {
accept: "application/json",
"Content-Type": "application/json",
},
},
(error, response) => {
if (error) console.error(error);
console.log(response.body);
});
// ?q= is the querry that api/pinterest takes
// Method 3 (Unirest)
const unirest = require("unirest");
unirest.post("https://magneum.vercel.app/api/pinterest?q=cobra")
.headers({ accept: "application/json", "Content-Type": "application/json" })
.then((response) => {
console.log(response.body);
});
● Api/SFW
- Informator:
Use all below available sfw endpoints to get .gif .mp4 .png & .jpeg links.
● endpoint: /api/sfw?q=
● example: /api/sfw?q=waifu
● querries available:
waifu, neko, shinobu, megumin, bully, cuddle, cry, hug, awoo, kiss
lick, pat, smug, bonk, yeet, blush, smile, wave, highfive, nom, bite, glomp
slap, kill, kick, happy, wink, poke, dance, cringe, handhold
- Code Examples
Examples are demonstrated using javascript & typescript.// ?q= is the querry that api/sfw takes
// Method 3 (Unirest)
const unirest = require("unirest");
unirest.post("https://magneum.vercel.app/api/sfw?q=waifu")
.headers({ accept: "application/json", "Content-Type": "application/json" })
.then((response) => {
console.log(response.body);
});
// ?q= is the querry that api/sfw takes
// Method 2 (Request)
const request = require("request");
request({
method: "GET",
url: "https://magneum.vercel.app/api/sfw?q=waifu",
headers: {
accept: "application/json",
"Content-Type": "application/json",
},
},
(error, response) => {
if (error) console.error(error);
console.log(response.body);
});
// ?q= is the querry that api/sfw takes
// Method 3 (Unirest)
const unirest = require("unirest");
unirest.post("https://magneum.vercel.app/api/sfw?q=waifu")
.headers({ accept: "application/json", "Content-Type": "application/json" })
.then((response) => {
console.log(response.body);
});
● Api/Shorten
- Informator:
Use this module to get a shortened url from tinyurl.
● endpoint: /api/shorten?q=
● example: /api/shorten?q=https://google.com
- Code Examples
Examples are demonstrated using javascript & typescript.// ?q= is the querry that api/shorten takes
// Method 1 (Axios)
const axios = require("axios");
/** @type {import axios from "axios"} */
axios.get("https://magneum.vercel.app/api/shorten?q=www.github.com")
.then(function (response) {
console.log(response.data);
})
.catch(function (error) {
console.error(error);
});
// ?q= is the querry that api/shorten takes
// Method 2 (Request)
const request = require("request");
request({
method: "GET",
url: "https://magneum.vercel.app/api/shorten?q=www.github.com",
headers: {
accept: "application/json",
"Content-Type": "application/json",
},
},
(error, response) => {
if (error) console.error(error);
console.log(response.body);
});
// ?q= is the querry that api/shorten takes
// Method 3 (Unirest)
const unirest = require("unirest");
unirest.post("https://magneum.vercel.app/api/shorten?q=www.github.com")
.headers({ accept: "application/json", "Content-Type": "application/json" })
.then((response) => {
console.log(response.body);
});
● Api/Text2Speech
- Informator:
Use this module to get speech url from google-api using text.
● endpoint: /api/text2speech?q=
● example: /api/text2speech?q=Hello. How are You?
- Code Examples
Examples are demonstrated using javascript & typescript.// ?q= is the querry that api/text2speech takes
// Method 1 (Axios)
const axios = require("axios");
/** @type {import axios from "axios"} */
axios.get("https://magneum.vercel.app/api/text2speech?q=Hello. How are You?")
.then(function (response) {
console.log(response.data);
})
.catch(function (error) {
console.error(error);
});
// ?q= is the querry that api/text2speech takes
// Method 2 (Request)
const request = require("request");
request({
method: "GET",
url: "https://magneum.vercel.app/api/text2speech?q=Hello. How are You?",
headers: {
accept: "application/json",
"Content-Type": "application/json",
},
},
(error, response) => {
if (error) console.error(error);
console.log(response.body);
});
// ?q= is the querry that api/text2speech takes
// Method 3 (Unirest)
const unirest = require("unirest");
unirest.post("https://magneum.vercel.app/api/text2speech?q=Hello. How are You?")
.headers({ accept: "application/json", "Content-Type": "application/json" })
.then((response) => {
console.log(response.body);
});
● Api/Unsplash
- Informator:
Use this module to get high resolution wallpapers from unsplash.
● endpoint: /api/unsplash?q=
● example: /api/unsplash?q=Tom and Jerry
- Code Examples
Examples are demonstrated using javascript & typescript.// ?q= is the querry that api/unsplash takes
// Method 1 (Axios)
const axios = require("axios");
/** @type {import axios from "axios"} */
axios.get("https://magneum.vercel.app/api/unsplash?q=Tom and Jerry")
.then(function (response) {
console.log(response.data);
})
.catch(function (error) {
console.error(error);
});
// ?q= is the querry that api/unsplash takes
// Method 2 (Request)
const request = require("request");
request({
method: "GET",
url: "https://magneum.vercel.app/api/unsplash?q=Tom and Jerry",
headers: {
accept: "application/json",
"Content-Type": "application/json",
},
},
(error, response) => {
if (error) console.error(error);
console.log(response.body);
});
// ?q= is the querry that api/unsplash takes
// Method 3 (Unirest)
const unirest = require("unirest");
unirest.post("https://magneum.vercel.app/api/unsplash?q=Tom and Jerry")
.headers({ accept: "application/json", "Content-Type": "application/json" })
.then((response) => {
console.log(response.body);
});
● Api/Wallpaper
- Informator:
Use this module to get high quality wallpapers.
● endpoint: /api/wallpaper?q=
● example: /api/wallpaper?q=Asus Tuf
- Code Examples
Examples are demonstrated using javascript & typescript.// ?q= is the querry that api/wallpaper takes
// Method 1 (Axios)
const axios = require("axios");
/** @type {import axios from "axios"} */
axios.get("https://magneum.vercel.app/api/wallpaper?q=Asus Tuf")
.then(function (response) {
console.log(response.data);
})
.catch(function (error) {
console.error(error);
});
// ?q= is the querry that api/wallpaper takes
// Method 2 (Request)
const request = require("request");
request({
method: "GET",
url: "https://magneum.vercel.app/api/wallpaper?q=Asus Tuf",
headers: {
accept: "application/json",
"Content-Type": "application/json",
},
},
(error, response) => {
if (error) console.error(error);
console.log(response.body);
});
// ?q= is the querry that api/wallpaper takes
// Method 3 (Unirest)
const unirest = require("unirest");
unirest.post("https://magneum.vercel.app/api/wallpaper?q=Asus Tuf")
.headers({ accept: "application/json", "Content-Type": "application/json" })
.then((response) => {
console.log(response.body);
});
● Api/OngoingAnime
- Informator:
Use this module to get all latest on going anime.
● endpoint: /api/ongoinganime
- Code Examples
Examples are demonstrated using javascript & typescript.// ?q= is the querry that api/anime takes
// Method 1 (Axios)
const axios = require("axios");
/** @type {import axios from "axios"} */
axios.get("https://magneum.vercel.app/api/ongoinganime")
.then(function (response) {
console.log(response.data);
})
.catch(function (error) {
console.error(error);
});
// ?q= is the querry that api/anime takes
// Method 2 (Request)
const request = require("request");
request({
method: "GET",
url: "https://magneum.vercel.app/api/ongoinganime",
headers: {
accept: "application/json",
"Content-Type": "application/json",
},
},
(error, response) => {
if (error) console.error(error);
console.log(response.body);
});
// ?q= is the querry that api/anime takes
// Method 3 (Unirest)
const unirest = require("unirest");
unirest.post("https://magneum.vercel.app/api/ongoinganime")
.headers({ accept: "application/json", "Content-Type": "application/json" })
.then((response) => {
console.log(response.body);
});
● Api/Hentai
- Informator:
Use all below available hentai endpoints to get .gif .png & .jpeg links.
● endpoint: /api/hentai?q=
● example: /api/hentai?q=ass
● querries available:
ass, bdsm, blowjob, cum, doujin, feet, femdom, foxgirl, hentai
netorare, maid, masturbation, orgy, panties, pussy, school, succubus,
tentacles, thighs, uglyBastard, uniform, yuri
- Code Examples
Examples are demonstrated using javascript & typescript.// ?q= is the querry that api/hentai takes
// Method 1 (Axios)
const axios = require("axios");
/** @type {import axios from "axios"} */
axios.get("https://magneum.vercel.app/api/hentai?q=ass")
.then(function (response) {
console.log(response.data);
})
.catch(function (error) {
console.error(error);
});
// ?q= is the querry that api/hentai takes
// Method 2 (Request)
const request = require("request");
request({
method: "GET",
url: "https://magneum.vercel.app/api/hentai?q=ass",
headers: {
accept: "application/json",
"Content-Type": "application/json",
},
},
(error, response) => {
if (error) console.error(error);
console.log(response.body);
});
// ?q= is the querry that api/hentai takes
// Method 3 (Unirest)
const unirest = require("unirest");
const unirest = require("unirest");
unirest.post("https://magneum.vercel.app/api/hentai?q=ass")
.headers({ accept: "application/json", "Content-Type": "application/json" })
.then((response) => {
console.log(response.body);
});
● Api/NSFW
- Informator:
Use all below available nsfw endpoints to get .gif .mp4 .png & .jpeg links.
● endpoint: /api/nsfw?q=
● example: /api/nsfw?q=nsfw
● querries available:
nsfw, nsfw2, bonermaterial, nsfw411, iwanttofuckher, exxxtras, distension, bimbofetish, christiangirls, dirtygaming
sexybutnotporn, femalepov, omgbeckylookathiscock, sexygirls, breedingmaterial, canthold, toocuteforporn, justhotwomen, stripgirls, hotstuffnsfw, uncommonposes, gifsofremoval
nostalgiafapping, truefmk, nudes, 4k, realgirls, blowjobs, milf, milk, milking, lactating, pussy, slut, cumslut
- Code Examples
Examples are demonstrated using javascript & typescript.// ?q= is the querry that api/nsfw takes
// Method 1 (Axios)
const axios = require("axios");
/** @type {import axios from "axios"} */
axios.get("https://magneum.vercel.app/api/nsfw?q=bonermaterial")
.then(function (response) {
console.log(response.data);
})
.catch(function (error) {
console.error(error);
});
// ?q= is the querry that api/nsfw takes
// Method 2 (Request)
const request = require("request");
request({
method: "GET",
url: "https://magneum.vercel.app/api/nsfw?q=bonermaterial",
headers: {
accept: "application/json",
"Content-Type": "application/json",
},
},
(error, response) => {
if (error) console.error(error);
console.log(response.body);
});
// ?q= is the querry that api/nsfw takes
// Method 3 (Unirest)
const unirest = require("unirest");
unirest.post("https://magneum.vercel.app/api/nsfw?q=bonermaterial")
.headers({ accept: "application/json", "Content-Type": "application/json" })
.then((response) => {
console.log(response.body);
});