Glad you asked, you visiting this about page. Pretendo's Juxtaposition Lookup is a tool that can search for any posts from the Juxt Database
I (@Nael2xd1) made this in my free time, which just means i made it because i wanted to see who mentioned me, and such.
This was inspired from this project https://github.com/Milk-Cool/PretendoLookup/ but instead i made it in Python.
Is it free?
Yes, like really free. You can search up as many as you want, I'm not even gonna add ads or a rate-limit.
Does it also store deleted posts?
Yes, but with a catch:
Are there any easter eggs?
Yes, go find them :)
Do note that using my API to abuse is not allowed and can ban you from using it.
Searches through the database and Counts the total amount of Posts, Comments and Communities
Returns something like this:
{ "comments": 380261, // Total Comments Stored "community": { // A map of Unique Communities (WARNING! BIG!) "10002828368625994929": "Corbin66 Racing" // Community key / value, key is ID and value is Name }, "posts": 522249 // Total Posts Stored }
Searches through the entire database and fetches 25 latest posts.
Params (in JSON format):
mode (string): Mode to search for, available options: "user" "post" "pid" "yeahs" "gangs", string not in options returns 403query (string): Query to search for, accepts all modes except yeahs, default is empty.page (integer): Page to fetch (0-indexed), default is 0, invalid number returns 400descending (boolean): Whether should descend or not, only available if mode is "yeahs", default is false, invalid boolean returns 403Returns something like this:
[ { "body": "MMPH!!!!! GULP! BASSIE: DELICIOUS", // body of the post "comments": [ // an array of comments { "body": "NOT AGAIN- THIS PERSON AGAIN", // body of the comment "express": 5, // enum of the expression the mii is making "mii": "Johan", // name of the mii in the comment "painting": 0, // integer, 1 if it has a painting or 0 for not "pid": 1666910171, // pid of the mii that commented "postid": "HxuZ0UJkt7vFeD3EVXPvn", // postid for the comment "screenshot": 0, // integer, 1 if it has a screenshot or 0 for not "yeah": 0 // total yeahs (likes) counted } ], "community": "1572068658316972032", // id of the community that the post was fetched from "express": 1, "mii": "BassieVore", // name of the mii in the post "painting": 0, "pid": 1444251133, // pid of the mii that made the post "postid": "lIfXUIUhQqtEX2DbD7iRT", // postid for the post "screenshot": 0, "yeah": 1 } ]
express