CURRENT MISSION: Conclude the 2026 soyjak.party hack page, aswell as any pages relating to it, such as the Summer 2026 Crisis page.
Update Quotecord with any relevant info. See the blackboard for more info.
GET

FUCK WOJACKSPAMMERS BTW I <3 LESBIAN HENTAI OF TWO DUDES
DESU DESU DESU DESU DESU DESU SUDE


A GET[a] is a post that features an uncommon pattern of repeating digits in its ID; usually a sign that the poster has been blessed by the ID Gods.[1]
Notable GETs include posts where the ID is a single, repeating digit, and powers of ten. Sequential GETs, such as 1234, 12345, 123456, 1234567, etc. are also worth looking out for.
DO notify the Party about it if it's close enough to start a heist operation. If you see any board that's less than 100 posts away from its next GET, then notify the Sharty IMMEDIATELY.
As of March 2026, Soyteens have stolen approximately 140 GETs on 4chan across 41 boards since November 2021.
Types of GET[2]
X denotes identical digits present in a post number. The more repeating digits, the more significant the GET is considered. There is also the factor when you can't get any higher GET, so it is considered valuable. For example trips are very worthy if the last post on a board is below 1000, but not anymore if the post count goes above 1000.
| Sequence | Name |
|---|---|
| XX | Dubs |
| XXX | Trips |
| XXXX | Quads |
| XXXXX | Quints |
| XXXXXX | Hexes |
| XXXXXXX | Septs |
| XXXXXXXX | Octs |
| XXXXXXXXX | Nints |
| XXXXXXXXXX | Decs |
there are also "special gets", otherwise boring post numbers turned into gems by the KHAN himself (or one of the jannies)
Natural vs Artificial GETs
A natural GET is a GET that is obtained accidentally, without the poster being aware that their post was likely to be a GET. By contrast, an artificial GET (also known as a scripted GET) is a GET that was obtained on purpose by way of the poster carefully timing when they post in order to increase their chances of obtaining a GET. While it is often impossible to tell for certain whether a GET is natural or artificial, a surefire way to identify an artificial GET post is if it references GETs and/or the digits it expects to have. GETs are more likely to be identified as natural if their content is informal and they look to be unscripted and unexpecting of receiving much attention.
Saging for post count manipulation
Sometimes, when a major GET is approaching, some Anons sage posts far back in the catalog in order to subtly raise the post count, hampering users' ability to monitor the current post number. This method can be used either to procure an artificial GET, or to prevent other users from doing so, thereby increasing the likelihood of an oblivious user's unplanned post obtaining the coveted digits.
This method does not reliably work if the board's catalog has a sorting option that shows posts based on when they were last replied to instead of when they were bumped, which can render this tactic meaningless. It will still throw off GET seekers that sort by bump order and not last reply, though.
Scripts

You can use this script, along with 4chan X, to script any GET you wish:

Extended content
|
|---|
// ==UserScript==
// @name 4chan GETter
// @description Script to help you get repeating digits. Loosely based on mGET. Requires 4chan X.
// @author Xyl
// @match *://*.4chan.org/*
// @match *://*.4channel.org/*
// @grant GM_xmlhttpRequest
// @connect sys.4chan.org
// @version 1.2.1
// @namespace https://xyllon.com
// ==/UserScript==
let latestPostNumber = -1;
const board = location.pathname.match(/\/[^\/]+\//)[0];
let games = (board == "/v/" || board == "/vg/" || board == "/vr/");
if (document.getElementById("qr")) inject();
document.addEventListener('QRDialogCreation', (e) => inject());
function inject() {
let dubs = (games) ? "" : "<option value=\"dubs\">Dubs</option>";
document.querySelector('#qr .move').insertAdjacentHTML("afterend", `
<div class="getscript" style="padding-bottom: 5px; padding-left: 5px;">Last Post #<span id="postnumber" style="visibility: hidden"></span>
<div style="float: right; margin-right: 15px;">
<input type="number" name="offset" value="1" style="margin-right: -3px; width: 5ch; height: 16px; padding: 0px !important; -moz-appearance:textfield;" id="offset" title="When to post (a value of 1 with a target post of 99 will post at 98, a value of 2 will post at 97, etc.)">
<select data-name="digits" id="digits" title="Select the numbers you want">
<option value="none">Select GET</option>` + dubs + `
<option value="trips">Trips</option>
<option value="quads">Quads</option>
<option value="quints">Quints</option>
<option value="sexts">Sexts</option>
<option value="septs">Septs</option>
<option value="octs">Octs</option>
<option value="nons">Nons</option>
<option value="decs">Decs</option>
</select></div></div>`);
approxLatestPostNumber();
}
function checkForGET () {
window.target = latestPostNumber + parseInt(document.getElementById('offset').value);
switch(document.getElementById("digits").value) {
case "":
break;
case "dubs":
return /(\d)\1{1,}$/.test(target);
break;
case "trips":
return /(\d)\1{2,}$/.test(target);
break;
case "quads":
return /(\d)\1{3,}$/.test(target);
break;
case "quints":
return /(\d)\1{4,}$/.test(target);
break;
case "sexts":
return /(\d)\1{5,}$/.test(target);
break;
case "septs":
return /(\d)\1{6,}$/.test(target);
break;
case "octs":
return /(\d)\1{7,}$/.test(target);
break;
case "nons":
return /(\d)\1{8,}$/.test(target);
break;
case "decs":
return /(\d)\1{9,}$/.test(target);
break;
}
}
function approxLatestPostNumber() {
fetch("https://a.4cdn.org" + board + "1.json").then(response => response.json()).then(json => {
let threadFound = false;
let thread = 0;
while (!threadFound) {
if (json.threads[thread].posts[0].closed == 1 || json.threads[thread].posts[0].sticky == 1) thread++;
else threadFound = true;
}
latestPostNumber = json.threads[thread].posts.slice(-1)[0].no;
document.getElementById("postnumber").textContent = latestPostNumber;
updatePostNumber();
});
}
function updatePostNumber() {
GM_xmlhttpRequest({
url: ("https://sys.4chan.org" + board + "imgboard.php?res=" + (latestPostNumber + 1)),
method: "HEAD",
onload: response => {
if (response.status == 200) {
latestPostNumber++;
} else if (games && /(([1-9])\2|[^0]0{2,2})$/.test(latestPostNumber + 1)) {
if (/[^9]99$/.test(latestPostNumber + 1)) latestPostNumber += 2;
else latestPostNumber++;
}
if (checkForGET()) {
document.querySelector("#file-n-submit input:last-child").click();
document.getElementById("digits").value = "none";
}
document.getElementById("postnumber").style.visibility = "visible";
document.getElementById("postnumber").textContent = latestPostNumber;
updatePostNumber();
}
});
}
|
Installation and Usage
To install this script, install a userscript manager such as Violentmonkey, then click on the extension's icon and click its "Create a new script" button. Delete any template code already in the editor, and paste the entire script. Then, click save. You can install it alongside 4chan Xif you want.
Once installed, you open a 4cuck thread and the script adds a small control panel to the quick-reply box where you choose the type of repeating digits you want (like dubs, trips, etc.) and an offset for timing, then as new posts are made it continuously checks the latest post number via the site’s API and predicts upcoming IDs, automatically submitting your post at the exact moment the next post number matches your selected pattern so you can “GET” repeating digits without manually timing it.
GETs on the Sharty
See: GET/soyjak.party
GETs on the Wiki
See: GET/Soyjak Wiki
GETs on SoyBooru
See: GET/SoyBooru
GETs on 4chan
See also: Raids

But it is slowing down drastically, which may lead to it being OVER.
Site-wide leaderboards
| Rank | Board | GET # | Significance | PPM[b] |
|---|---|---|---|---|
| #1 | /b/ | 911111111 | Octs | ~114.57 |
| #2 | /co/ | 133333333 | Octs | ~44.45 |
| #3 | /g/ | 88888888 | Octs | ~42.45 |
| #4 | /lgbt/ | 33333333 | Octs | ~32.79 |
| #5 | /jp/ | 44444444 | Octs | ~20.13 |
| #6 | /k/ | 55555555 | Octs | ~19.59 |
| #7 | /vp/ | 55555555 | Octs | 15.40[3] |
| #8 | /gif/ | 22222222 | Octs | ~13.86 |
| #9 | /lit/ | 22222222 | Octs | ~10.39 |
| #10 | [s4s] | 11111111 | Octs | ~4.60 |
The above leaderboard tracks the most prestigious 4cuck GETs stolen by the Sharty based on GET significance (sexts, septs, octs, etc.) and the board's estimated (or actual) posts per minute (PPM) when the GET was obtained. For example, an octuple-GET will always outrank a septuple-GET due to the former's inherent significance and rarity. However, an octuple-GET obtained on a fast board (like /b/) is more valuable than an octuple-GET obtained on a slow board (like /po/) due to the former's PPM being higher, meaning a greater level of precision, coordination, and luck is required to successfully steal it.
To calculate a board's estimated PPM during an octuple-GET,[c] obtain the board in question's post/min and % Activity Now values from 4stats.io. Divide the posts per minute value by the % Activity Now value to obtain the board's daily PPM peak (eg.: 3.5 PPM ÷ 85% = 4.11764705882), then multiply the product by 2.62 and round your answer to the nearest hundredth (eg. 4.11764705882 × 2.62 = 10.79) to obtain the estimated GET PPM.
Note that these rankings are based solely on quantitative metrics, rather than qualitative metrics. One could argue that the simultaneous 29999999 & 30000000 GETs stolen from /lgbt/ hold more cultural significance to the Soy Community at large than the ten GETs listed above put together due to the role /tttt/ played in Operation Clean Stable. However, cultural significance is not taken into account when determining a GET's leaderboard ranking - only its rarity and difficulty.
/3/
999999 GET[4]

1000000 GET[5]
/aco/
6666666 GET[6]

7999999 GET

/a/
266666666 GET[7]

The 266666666 GET on the tranime board /a/ was a NAS frog.
/an/
4999999 GET[8]

Post no. 4999999 was obtained June 9, 2025, right after the /lgbt/ 39999999 GET was stolen.
/b/
911111111 GET[9][10]

This was a very turbulent GET. This GET is especially notable due to having the highest board PPM during the GET attempt, at 114.5 posts per minute, or one post every 0.523Ϫ seconds.
The calling thread suffered multiple derail attempts, and then the entire site was hit by some faggot with a bot and multiple proxies. Nevertheless, it was still a victory. Not even some terminally obsessed script-throttling tranny can stop the Party.
/bant/
14000000 GET[11]

16666666 GET[12]

18999999 and 19000000 GETs[13][14]


The 18999999 and 19000000 GET was taken by a Nate themed Flartson alongside a hanging troonjak of Cirno.
23000000 GET[15]

/biz/
56000000[16] GET

/c/
4444444 GET


/co/
133333333 GET[17]

-
>no posts since yesterday even doe I just posted
GET 133333333 was a dancing cobson GET
139999999[18] GET

A major 'zellig GET on 'zellig thread and 'zellig day[d]
/ck/
18999999[19] and 19000000[20] GETs
These GETs were allegedly taken by the Moroccan, who cited prior posts on /bant/ with the same filename and MD5 hash as the two images used in the GETs as proof.[21]


/diy/
2888888 GET[22]

/fit/
70000000 GET



71000000 GET


71999999[23] and 72000000[24] GETs
Both GETs were a babybot GET. They were both deleted a few hours later.


72999999[25] and 73000000[26] GETs


73999999 GET
A 'teen was looking to bulk up and happened upon a GET

/g/
88888888 GET[27]

89000000 GET[28]

91000000 GET[29]

94444444 GET

Despite being stolen accidentally by a soyteen, post n°94444444 was a decisive Sharty IAS win. Unlike most soyteen GETs on 4chan, this one was well-received by /g/ natives, and the first GET to feature a HWABAB cat variant of Cobson (He Will Always Be A Bed).[30]
95555555 GET[31]

96999999 and 97000000[32][33] GET


Flartbot GET, along with a pro-Apple 'pasta to piss off winbabies and linuxtroons.
99666666 GET

/gif/
22222222 GET[34]

cartoon bald men with beards edition
24999999[35] and 25000000[36] GETs


25999999[37] and 26000000[38] GETs
GET 25999999 was "baby bot won", and GET 26000000 was soot shaking his ass. Both of them were posted in a tranny thread.[39]

29000000[40] GET
GET 29000000 was stolen by Bootists

/hc/
2222222 GET[41]

The >>>/hc/ get was stolen on October 5, 2022. Unlike most GETs, the coomers were too focused on masturbating to notice that their get was stolen.
/ic/
7000000 GET[42]

This one Janny erased fast (geg).
/jp/



37999999[43] and 38000000[44] GETs


38999999[45] and 39000000[46] GETs


44444444 GET[47]

This one claimed by Baby bot
47000000 and 46999999 GET

June/3/2024, TWO get's are claimed.
48000000 GET[48]

/k/
55555555 GET[49]

57000000 GET[50]

58000000 GET[51]

59999999[52] & 60000000[53] GET

Despite being an artificial get it still caused a meltdown among 4cucks who thought that 'eens came form /pol/ and started accusing 'teens of being pro-Russian shills.[54][55] One of them even started spamming anti-Russian gore in the thread and on the 'log.[56]
/lgbt/
25000000 GET[57]

29999999 & 30000000 GET


The 29999999 & 30000000 GET on /lgbt/ were decisive Sharty wins.[58]
The 30000000 GET consisted of a picture of a rock with a soyjak face on it, with the accompanying text 'Out of the coal came forth sweetness.'
'The 29999999 GET was cracker cow, the counterpart to nigger cow. The jannies seethed so much that they deleted the GETs before the archive could even save them, which would have meant deleting them less than 10s after they were posted. They went so far as to ban natives who made the mistake of asking what the get was.
The Sharty erupted into celebration, and both the get thread and the catalog began to play the song "We Are The Champions".[58] The mood on the website was absolutely ecstatic, arguably only beaten by that of the /s4s/ get.
The raid thread later got mysteriously deleted and removed the archives. A mod later stated that it was due to a bug with the archiver as well as the thread being accidentally deleted.[59]
33000000 GET[60]

33333333 GET[61][62]

34000000 GET[63]

Gem on Christmas eve.
36999999 GET[64]
Post no. 36999999 was obtained on July 23, 2024[65]

38999999 GET[66]
Post no. 38999999 was obtained on February 22, 2025. We could’ve had 39000000 too, but around 1100 posts prior some humongous faggot made a thread alerting the jannies of our plans, likely skewing the outcome of the posts as a result.

39999999 GET[67]
Post no. 39999999 was obtained on June 9, 2025 by a cacaborean, even doe the goal was 40000000 and the Sharty lost to glegle[68]

41000000 GET[69]
Post no. 41000000 was obtained on September 10, 2025 by Scholar, and was swiftly nuked by the jannies.

42000000 GET[70]
Post no. 42000000 was obtained on December 14, 2025 by Vlodson and the thread was nuked minutes later.

in the darkest hour of the age,
that hope was fallen low, and the hearts of men failed them.
For they had lost their glory,
and women their beauty.
<reddit space
Yet out of the deep darkness there appeared a countenance—
with no glasses upon his eyes, nor stubble upon his face;
and yet was he known surely to be IAS.
And the face thereof was as the face of God.
<reddit space
And He spoke
“Let there be Vlodson.”
And it was beautiful.
43000000 GET[71]
Post no. 43000000 was obtained on March 20, 2026 by Chud, featuring Charlie Kirk to make up for the earlier failed Charlie Kirk lgbt GET.[72]

/lit/
22222222 GET[73]

While 'teens agreed that this Bernkastel GET was coal, it was secured by a Sharty poster nonetheless.[74]
/news/
1222222 GET[75]

get brought to you by https://soyjaks.party
1234567[76][77] GET


/p/
3999999[78], 4000000[79] GETs


4444444 GET[80]

/pol/
438888888 GET
/pol/ saving GET[81]

453333333 GET
TND victory[82]

how blacksissies will recover from this one?
/pw/
4000000 GET[83]

/r9k/
68000000 GET[84]

69000000 GET[85]
The r9k 69000000 GET was NAS, but a /qa/ joke nonetheless.

72999999[86] and 73000000[87] GETs


74000000 GET[88]

75000000 GET[89]

76000000 GET[90]


Leebait win
83000000 GET[91]

[s4s]
10000000 GET[92]
Main article: Swaglord

As retaliation for the deletion of /qa/, soyteens stole the largest /s4s/ GET ever. This prompted arch-janny, Swaglord, (who had attempted to automate the GET but ended up with Post number 10000001 instead), to seethe big time. Dozens of /s4s/ natives were banned in a fit of impotent rage as a side effect. This GET was perhaps the most impactful in party history, being of a highly desirable number on a relatively popular board, and leading to the normalization of Cobson in soyjak culture.
10999999 GET[93]
The 10999999 GET of /s4s/ was "gemmy" in response to a failed GET featuring Cobson and the iconic song Cobbo by 6ixϪhrembo that was also used in the 10000000 GET in the same board.

11000000 GET[94]

11111111 GET

There's no archive because a janny seethed and deleted it in seconds before any archive could save it.
11200000 GET[95]

a neutralposter got the get, amazing isn't?
12000000 GET[96]

13000000 GET[97][98]

Shrek won Doe.
/soc/

31999999[99] and 32000000[100] GETs


The 31999999 and 32000000 GETs on /soc/ were stolen by pictures of Lee Goldson and Kuz, respectively.[101] Note that the start of the user ID for post 31999999 was QA, proving that /qa/ won once again.
/t/
1111111 GET

On February 5, 2022, a soyteen scored the first and so far only septs in the history of /t/.[102] Unlike most soyteen GETs on 4chan, post number n°1111111 was well-received by /t/ natives.
/tg/


/trash/
53999999 GET[103]
Almost a soylady and 'zellig W

57000000 GET[104]
Whatever this thing is

58999999 GET[105]

59000000 GET[106]

67000000 GET [107]

An AI animated GIF of pepe the frog talking, the GIF from which this video originates from was created on the Sharty, thus making it a Sharty win.[108]
/m/
21999999 GET [109]

cobson egg win
22000000 GET [110]

23000000 GET [111]

/v/
/v/ has GETs that don't end in 0 disabled entirely due to a history of autists sperging out over GETs. posts that would end in dubs (and thus any trips, quads, quints, etc) will get their post ID raised by 1 so it's not a GET; if you don't believe me, try making a reply double arrow to a post ending in dubs (you'll have to manually input the post ID) and you'll notice that there was never a post with that ID because it was skipped. NO WIN, JUST LOSS.
/vmg/
888888 GET[112]


999999 GET[113]

1111111 GET[114]

/vm/
777777 GET.[115][116][117]
Two hours later teens also tried to get the 53000000 GET from /trash/ yet this was taken by a cirnofag.

1000000 GET

1111111 GET

2222222 GET

It was bernkastel leebait.
/vp/
53000000 GET[118]
BWC gem, a Sharty win.


55444444 GET[119]
Thanks to Shaun the Vorefag chimping out at just the right time, the post numbers were shifted just enough for a Soyteen to post a leaked quote from the jannycord.

Initially, the archive link to the GET wasn’t linkable on the ‘ki due to some tranny posting ‘p out of rage after the archive link was shared on /soy/, which due to how arch.b4k.dev works caused the post to be mirrored on the archive until a archb4k janny cleaned it up and nuked the image from their servers. Fucking /vp/edophiles.
The person who organized the GET heist would later set his sights higher and claim the next GET, which brings us to…
55555555 GET[120]

Just after midnight on March 8, 2024, an ambitious soyteen raid leader & major contributor to the /vp/ trolling tactics article makes a thread on /soy/[121] with the intent to steal the upcoming 55555555 octs to claim it for the Sharty and as an early birthday present for himself, and out of spite for the board after witnessing /vp/‘s descent into Niggerhell after over 2 and a half years of using that dumpster fire.
After approximately 2 and a half hours of slowburning with ‘teens making normal looking posts to bumo up the board’s post count until 2:42 AM, the GET was secured by a scriptGOD claiming it for the Rape New World Order.
One of the other contenders for the GET were images of a sneed hat-wearing shiny sandshrew saying “Musk won, /soy/ won, HWABAG”, chosen specifically by the raid organizer to piss off tripfags while showing off his favorite pokemon; which the GET heist thread even being named “Operation Pholidote” after the taxonomical order of the animal Sandshrew is based on.
Even though the GET wasn’t claimed with the hand-crafted, soyentifically honed tripfag-enraging gem due to a timing error & captcha issues, the scriptGODs<note>at least 2, according to a steam chat window</note> of the Rape New World Order were able to secure the GET.
Surprisingly, the natives’ reception of the GET was primarily positive and it even convinced at least a few locals to join the Sharty’s side. As usual, there were some /vp/edos complaining, including some jartycuck/tranny/furfag/whatever who posted NSFW ponyshit to try and corrupt the thread. It didn’t work. At least it wasn’t ‘p this time.
58999999[122] & 59000000[123] GETs

/vrpg/
3333333 GET[124]

/vst/
999999[125] and 1000000[126] GETs


/vt/
41000000 GET[127]

47277777 GET[128]

56000000 GET[129]

60000000 GET[130]

65000000 GET[131]

74999999 GET

88000000 GET[132]

98999999 and 99000000 GETs


Both GETs were stolen on April 8, 2025.[135]
/wsg/
5555555 GET

5999999[136] and 6000000 GETs[137]


/x/
30999999[138] and 31000000[139] GETs


34999999[140] and 35000000[141] GETs



37000000 GET

41000000 GET[142]

42000000 GET

It was a scientific GET.
/y/
3000000 GET[143][144][145]


/e/
3000000 GET[146]

GETs on Other Imageboards
Mintboard
/bone/
777777 GET
-
Lucky Hillbilly Impjak Gem
-
Seething malding tranjans banned mobilechad after stealing the GET and deleted the post
The GET Nº777777 (GET of luck) was stolen by a mobilechad after posting a hillbilly impjak gem on /bone/, this caused so much malding amongst their tranjans that they deleted the GET and banned the mobilechad shortly after.
800000 GET

The 'unker
4000 GET

4000 GET was obtained in a confession thread by soylita poster.[147]
5000 GET

5000 GET prophecized the appearance of Admin Ϫ and thus considered a massive morale-boosting gem for the scattered soymmunity.[148]
7000 GET

7000 GET was obtained by a teen voicing his dissatisfaction with SoySuba coal assumed by many to be the coal that is killing /soy/.
8000 GET

8000 GET was obtained by someone railing for pony ban.
9000 GET

9000 GET was a reply to a teen who was asking what a tripcode is.
10000 GET

10000 GET was a gemmy reference to Shrekchan, a dead "ironic" altchan that was compared to Sharty by some oldfags(It is also having creepypastas too). The GET received a custom message from Angeleno.[149]
11111 GET

The first quints of the 'unker got obtained by a teen agreeing with a frogposter proclaiming jihad against Red.[150]
12345 GET

The 12345th get on the 'unker was by someone asking why everyone hates jakkers.
20000 GET
???
Marzichan
/plaza/
500 GET

Endchan
/rus/
111111 GET

/dota/
33333 GET

69999 and 70000 GETs[151]

/kanojo/
77777 GET

/pone/
9999 and 10000 GETs

/genshin/
10000 GET

19999 and 20000 GETs
Double GET win.

/agatha2/
59999, 60000, 60001 are all stolen by 'swinny members.



/hisrol/
11111 GET

/rus/
44444 GET

/rapport/
60000 GET
image to be added
Lainchan
KEEP IN MIND: LAINTRANNY JANITORS ARE KNOWN FOR SEETHING TO THE EXTREME EVERY TIME SOMEONE STEALS A GET FROM THEIR EXTREMELY DEAD IMAGEBOARD. TAKE HEED.
/hum/
66666 GET

The GET was later edited by the admin, who proceeded to add custom warning messages to every soy post in the thread.[152]


80000 GET And 79999 GET

/music/
11111

Out of pure seethe, jannies immediately locked not only the board, but the whole site.[it just is, ok?snopes?it just is, ok?how???whatbut... why?]
12345

This GET also accounted for the weird /culture/ board which is an overboard of sorts
/q/
12345

Shartyteen snitching Shemmy confirmed.
/sec/
22222

The get was stolen by a babyGOD flooding multiple threads with excerpts from the Wikipedia page for breast milk and baby images.[153] The site was then rolled back because of "soyjak spammers".[154]
/vis/
12345

The 12345 GET on /vis/ was stolen by Snarky Snappy on April 5, 2025. Foodists tried to steal the GET with cat gore while falseflagging as us but failed miserably, the GET was a Cobson, proving he will always be a gem.[155]
/technology/

June/2/2024, yet another Lainchan buck BROKEN.
/lit/

Despite his incorrect opinion on the idea of a Skibidi Toilet book, it's ANOTHER Sharty WIN!
8kun
/biz/
7000 GET[156]

12345 GET[157]

/f1/
66666 GET

/hypno/
90000 GET[158]

/tingles/
30000 GET
The OP's linked image depicted a soyjak drooling whilst listening to ASMR, referring to the board topic. Due to board restrictions, the GET was accompanied not by an image, but by a YouTube embed: (Soyjak Baby Photos (Wholesome) from SoyTube.

Crystal Cafe
/b/
222222 GET

/feels/
99999 and 100000[159] GETs
The Sharty fought over and claimed two GETs that 'fe girls were entirely oblivious to. Baby stole the 99999 GET and was allegedly responsible for an impressive stealth Cacarald leading up to the GET. One post later, a certified platinum GODson victory swept the femcel community off their feet. This post echoed the iconic /s4s/ 10 Million Cobson GET.


/media/
30000 GET[160]

Leftypol
/siberia/
666666 GET

/anime/
20000 GET

/hobby/
33333 GET

/tech/
20000 GET

22222 GET

Swedish Win
/edu/
20000 GET

Getchan
/ref/
8888 GET[161]

9000 GET[162]

/test/
600th GET

666th GET

700th GET

KolymaNET Vichan Demo
/news/
100th GET

jakparty.soy
/meta/
11111th GET

/raid/
777th GET

/soy/
40000 GET[163]

lol look at all the frogs on here[164]
/Sharty/
11111 GET[165]

12000 GET[166]

15000 GET[167]
Kohlchan
/pol/
123456 GET[168]

/z/
60000 GET[169]

Soychan
/soy/
100 GET
On July 18, 2023, Soychan, a clone of soyjak.party, opened for fifteen minutes before being locked for excessive illegal spam.[170] Within this timeframe, a Joeyyposter posted the first GET on /soy/.
TheFrogPond
/pepe/
2666 GET

This GET shows an image of William Afton in his Scraptrap form, burning and keeping the devil waiting, it was a Sharty win and a markiplier win.
2700 GET

2800 GET

The vortex.
/bant/
Wizardchan
/music/
10000 GET

Banty
/bant/
999 and 1000 GET

This get is notable because Banty tried to make multiple obstacles for those who wish to access the website, from requiring a password to post through the most known URL (and changing those passwords) to shutting down said URL. The jannies apparently started replacing IAS images with gyates. (a meme popular among 4cuck touhou trannies) [172]
60000 and 59999 GETS
These GETS were stolen by PINGAS MAN! and a Floyd poster.


gurochan
/g/
99999 and 100000 GETs

COB GET
/rp/
7777 GET

Swinny
/soy/
6666 GET

50000 GET

It was a /cado/ win. The next day they brought down the post counter and made the 50k GET something else GEEEEEEEEEEEG. At least they made it a gemmy video and not obsessed brimstone.
/rr/
10 GET

/dalwa/
75 GET

/nigger/
10 GET
The Kuzzy
/soy/
22222 GET

Heyuri
/b/
99999 & 100000 GETs[173]


Squirrel Party
/meta/
35 GET

>Threat Level Green won
>Algeria lost
40 GET

>Threat Level Green won
>Antartica lost
45 GET

>Threat Level Green won
>Aruba lost
50 GET

>Threat Level Green won
>Bahrain lost
Desuarchive.org
/meta/
19999 & 20000 GETs

GETs on soyjak.blog
(Most GETs were posted here: https://blog.soyjak.st/index.php?threads/get-shlog-gets-monitoring-and-archive.3996)
69 GET

121 GET

420 GET

777 GET

1221 GET

1350 GET

1488 GET

4444 GET

5013 GET

6969 GET

7777 GET[176]

12321 GET

44444 GET

42069 GET

69420 GET

88888 GET

99999 GET

100000 GET

Notes
- ↑ The term "GET" is not an abbreviation despite looking like one, it's just old 4chan slang based off "getting" a repeating post number, with the all caps being part of that old slang that just stuck. Soy culture has yet to find an alternative de-4chanified term.
- ↑ Based on data pulled from 4stats.io and collected during Operation Pholidote, we can estimate that a board's PPM activity will spike to roughly
2.62times its average daily peak during a octuple-GET rush. - ↑ At the time of writing, more data is required for calculating other types of GETs.
- ↑ Ongezellig took place on October 14. Check Deel 4 if you don't believe.
Snopes
- ↑ https://archive.today/QainY#222222
- ↑ https://web.archive.org/web/20230315063157/https://s4s.fandom.com/wiki/List_of_Checks (Archived)
- ↑ https://files.catbox.moe/q2ntpg.png
- ↑ https://eientei.xyz/3/thread/999999(archive)
- ↑ https://eientei.xyz/3/thread/999993#p1000000
- ↑ https://desuarchive.org/aco/thread/6666666//
- ↑ https://desuarchive.org/a/thread/266664402/#266666666
- ↑ https://desuarchive.org/an/thread/4999772/#4999999
- ↑ https://thebarchive.com/b/thread/911111111/
- ↑ https://files.catbox.moe/a2fxjn.mhtml
- ↑ https://archive.palanq.win/bant/thread/14000000/
- ↑ https://archive.palanq.win/bant/thread/16666666/
- ↑ https://archive.palanq.win/bant/thread/18992271/#18999999
- ↑ https://archive.palanq.win/bant/thread/18984444/#q19000000
- ↑ https://archive.palanq.win/bant/thread/22999953/#23000000
- ↑ https://warosu.org/biz/thread/55999653#p56000000
- ↑ https://desuarchive.org/co/thread/133331396/#133333333
- ↑ https://desuarchive.org/co/thread/139961493/#139999999
- ↑ https://warosu.org/ck/thread/S18990440#p18999999
- ↑ https://warosu.org/ck/thread/S18999504#p19000000
- ↑ https://archive.chud.site/soy/thread/2444579#p2445104
- ↑ https://archive.today/A76jThttps://ghostarchive.org/archive/6w44Ahttps://archived.moe/diy/thread/2883138/#q2888888
- ↑ https://archived.moe/fit/thread/71998390/#q71999999
- ↑ https://archived.moe/fit/thread/71999262#p72000000
- ↑ https://desuarchive.org/fit/thread/72999999/
- ↑ https://desuarchive.org/fit/thread/72997746/#73000000
- ↑ https://desuarchive.org/g/thread/88888888/
- ↑ https://desuarchive.org/g/thread/88999447/#q89000000
- ↑ https://desuarchive.org/g/thread/91000000/
- ↑ https://desuarchive.org/g/thread/94411420/#94444444
- ↑ https://desuarchive.org/g/thread/95543744/#95555555
- ↑ https://desuarchive.org/g/thread/96959086/#96999999
- ↑ https://desuarchive.org/g/thread/96977127/#97000000
- ↑ https://archived.moe/gif/thread/22222222/
- ↑ https://archived.moe/gif/thread/24972671/#24999999
- ↑ https://archived.moe/gif/thread/24999928#25000000
- ↑ https://archived.moe/gif/thread/25988230/#q25999999
- ↑ https://archived.moe/gif/thread/25988230/#q26000000
- ↑ https://archive.today/cGK6Q
- ↑ https://archived.moe/gif/thread/29000000 https://megalodon.jp/2025-0618-2206-10/https://www.soyjak.st:443/soy/thread/11733365.html
- ↑ https://archiveofsins.com/hc/thread/2222222/
- ↑ https://warosu.org/ic/thread/7000000
- ↑ https://archived.moe/jp/thread/37999999/
- ↑ https://archived.moe/jp/thread/38000000/
- ↑ https://warosu.org/jp/thread/38999999#p38999999
- ↑ https://warosu.org/jp/thread/38996037#p39000000
- ↑ https://warosu.org/jp/thread/44372921#p44444444
- ↑ https://archive.today/p2NDW
- ↑ https://desuarchive.org/k/thread/55555555/
- ↑ https://desuarchive.org/k/thread/56999831/#57000000
- ↑ https://desuarchive.org/k/thread/58000000
- ↑ https://desuarchive.org/k/thread/59997883/#q59999999
- ↑ https://desuarchive.org/k/thread/59974058/#q60000000
- ↑ https://desuarchive.org/k/thread/59999973
- ↑ https://desuarchive.org/k/thread/60000060
- ↑ https://archive.soyjak.in/soy/thread/5164886# (archive.today)
- ↑ https://archived.moe/lgbt/thread/25000000/
- ↑ 58.0 58.1 https://archive.today/nJUsH
- ↑ https://archive.chud.site/q/thread/74254
- ↑ https://archive.today/NTosU
- ↑ https://archived.moe/lgbt/thread/33319192/#33333333
- ↑ https://archive.today/SYEWH
- ↑ https://archived.moe/lgbt/thread/33999888/#34000000
- ↑ https://archive.today/23x5K
- ↑ https://archive.marge.moe/soy/thread/8374149#
- ↑ https://archive.today/O8nRY
- ↑ https://archiveofsins.com/lgbt/thread/39997829/#q39999999
- ↑ https://archiveofsins.com/lgbt/thread/39999503/#40000000
- ↑ https://archiveofsins.com/lgbt/thread/40999815/#41000000
- ↑ https://archived.moe/lgbt/thread/42000000/#42000000
- ↑ https://megalodon.jp/2026-0321-0331-36/https://boards.4chan.org:443/lgbt/thread/43000000
- ↑ https://megalodon.jp/2026-0321-0314-58/https://soyjak.st:443/soy/thread/15580608.html
- ↑ https://warosu.org/lit/thread/22222067#p22222222
- ↑ https://archive.today/k0ncY#3757342
- ↑ https://archived.moe/news/thread/1222222/
- ↑ https://archive.today/K0G2G
- ↑ https://archived.moe/news/thread/1233831/#1234567
- ↑ https://archive.palanq.win/p/thread/3999989/#3999999
- ↑ https://archive.palanq.win/p/thread/3999979/#4000000
- ↑ https://archive.palanq.win/p/thread/4443454/#4444444
- ↑ https://archive.4plebs.org/pol/thread/438888279#438888888
- ↑ https://archive.4plebs.org/pol/thread/453333333/
- ↑ https://archived.moe/pw/thread/3998269/#4000000
- ↑ https://desuarchive.org/r9k/thread/68000000
- ↑ https://desuarchive.org/r9k/thread/68999704/#69000000
- ↑ https://desuarchive.org/r9k/thread/72999973/#q72999999
- ↑ https://desuarchive.org/r9k/thread/73000000/
- ↑ https://desuarchive.org/r9k/thread/74000000/
- ↑ https://desuarchive.org/r9k/thread/74999606/#75000000
- ↑ https://desuarchive.org/r9k/thread/76000000/
- ↑ https://desuarchive.org/r9k/thread/82999911/#83000000
- ↑ https://archive.4plebs.org/s4s/thread/9999967/#10000000
- ↑ https://archive.4plebs.org/s4s/thread/10999995/#q10999999
- ↑ https://archive.4plebs.org/s4s/thread/10998060/#p11000000
- ↑ https://archive.4plebs.org/s4s/thread/11200000
- ↑ Sharty thread:https://archive.soyjak.st/soy/thread/9600716 https://archive.today/1sT6M https://ghostarchive.org/archive/ziOpbGet:https://archive.today/XVtFO https://ghostarchive.org/archive/IsXgK
- ↑ https://megalodon.jp/2026-0610-0329-12/https://soyjak.st:443/soy/thread/16403931.html
- ↑ https://ghostarchive.org/archive/AqLdL
- ↑ https://archived.moe/soc/thread/31999999/
- ↑ https://archived.moe/soc/thread/32000000/
- ↑ https://archive.today/wip/CIw71
- ↑ https://archived.moe/t/thread/1077508/#1111111
- ↑ https://desuarchive.org/trash/thread/53997737/#53999999
- ↑ https://desuarchive.org/trash/thread/57000000/
- ↑ https://desuarchive.org/trash/thread/58990913#58999999
- ↑ https://desuarchive.org/trash/thread/59000000
- ↑ https://desuarchive.org/trash/thread/67000000
- ↑ https://archive.marge.moe/soy/thread/7547724#p7547829
- ↑ https://desuarchive.org/m/thread/21999999
- ↑ https://desuarchive.org/m/thread/21998803/#q22000000
- ↑ https://desuarchive.org/m/thread/22980250/#23000000
- ↑ https://arch.b4k.dev/vmg/thread/887744/#888888/
- ↑ https://arch.b4k.dev/vmg/thread/999999
- ↑ https://arch.b4k.dev/vmg/thread/1111111/
- ↑ https://archive.chud.site/soy/thread/1699228
- ↑ https://archive.chud.site/soy/thread/1698811
- ↑ https://arch.b4k.dev/vm/thread/777768/
- ↑ https://arch.b4k.dev/vp/thread/53000000/
- ↑ https://arch.b4k.dev/vp/thread/55444444/
- ↑ https://arch.b4k.dev/vp/thread/55555555/
- ↑ https://archive.today/vjett
- ↑ https://arch.b4k.dev/vp/thread/58999861/#58999999
- ↑ https://arch.b4k.dev/vp/thread/58968312/#59000000
- ↑ https://arch.b4k.dev/vrpg/thread/3333333/#3333333 https://archive.today/D8oTp
- ↑ https://arch.b4k.dev/vst/thread/999999/
- ↑ https://arch.b4k.dev/vst/thread/1000000/
- ↑ https://archived.moe/vt/thread/41000000/
- ↑ https://warosu.org/vt/thread/47271266#p47277777
- ↑ https://warosu.org/vt/thread/55903718#p56000000
- ↑ https://warosu.org/vt/thread/59946690#p60000000
- ↑ https://warosu.org/vt/thread/64995826#p65000000
- ↑ https://archived.moe/vt/thread/87989564/#q88000000/
- ↑ https://archive.palanq.win/vt/thread/98960984/#q98999999
- ↑ https://archive.palanq.win/vt/thread/98996039/#q99000000
- ↑ https://web.archive.org/web/20250408202511/https://www.soyjak.st/soy/thread/10553084.html https://archive.today/FUjAj https://ghostarchive.org/archive/xfkyy https://megalodon.jp/2025-0409-0525-08/https://www.soyjak.st:443/soy/thread/10553084.html
- ↑ https://desuarchive.org/wsg/thread/5997392/#5999999
- ↑ https://desuarchive.org/wsg/thread/5985527/#6000000
- ↑ https://archive.4plebs.org/x/thread/30999999/
- ↑ https://archive.4plebs.org/x/thread/30946203/#31000000
- ↑ https://archive.4plebs.org/x/thread/34997998/%23q34999999
- ↑ https://archive.4plebs.org/x/thread/35000000/%23q35000000
- ↑ https://megalodon.jp/2025-0831-1605-44/https://www.soyjak.st:443/soy/thread/12919567.html
- ↑ https://boards.fireden.net/y/thread/2998993/#3000000
- ↑ https://archive.today/trzKx
- ↑ https://archive.chud.site/soy/thread/2564832
- ↑ https://archive.palanq.win/e/thread/2903331/#3000000
- ↑ https://web.archive.org/web/20230815170631/https://bunker.soyjak.wiki/imgboard.php?res=2680
- ↑ https://archive.today/FDkzc
- ↑ https://archive.today/L1d2o
- ↑ https://archive.today/v2ROb
- ↑ https://archive.today/Yn2Cs
- ↑ https://archive.today/XD38D
- ↑ https://web.archive.org/web/20230804190510/https://soyjak.party/soy/thread/4258412.html
- ↑ https://web.archive.org/web/20230805065943/https://lainchan.org/sec/res/21846.html look at the blotter
- ↑ https://web.archive.org/web/20250405164114/https://soyjak.st/soy/thread/10520487.html https://archive.today/vprZM https://megalodon.jp/2025-0406-0140-23/https://soyjak.st:443/soy/thread/10520487.html
- ↑ https://ghostarchive.org/archive/UlpXK
- ↑ https://archive.ph/KvKh8
- ↑ https://ghostarchive.org/archive/edihd
- ↑ https://web.archive.org/web/20230613011619/https://crystal.cafe/feels/res/100000.html
- ↑ https://archive.today/tIwXW
- ↑ https://archive.today/gv8yg#q5644742
- ↑ https://archive.today/wsK3c#selection-655.0-658.0
- ↑ https://archive.chud.site/soy/thread/3514466
- ↑ https://archive.today/JlkvD
- ↑ https://archive.today/6yF4M
- ↑ https://archive.today/X22Jk
- ↑ https://archive.today/6PLRF
- ↑ https://archive.today/XBOts#123456
- ↑ https://archive.chud.site/soy/thread/3175541
- ↑ https://archive.today/NueHv
- ↑ https://web.archive.org/web/20231110073741/https://wizchan.org/music/res/10000.html
- ↑ https://kiwifarms.st/threads/soyjak-party-the-Sharty.145349/post-17124509
- ↑ https://archive.chud.site/soy/thread/6897953# https://archive.today/Wq4fW
- ↑ https://soyjakblog.com/threads/award-farming-general.155/page-2#post-1488
- ↑ https://soyjakblog.com/threads/.423/#post-4444
- ↑ https://blog.soyjak.st/index.php?threads/blog-is-dead.701/#post-7777
- ↑ https://soyjakblog.com/threads/the-princess-diaries.1039/page-28#post-44444
- ↑ https://soyjakblog.com/threads/.3996/#post-88888
- ↑ https://soyjakblog.com/threads/.4431/#post-99999
- ↑ https://soyjakblog.com/threads/get-shlog-gets-monitoring-and-archive.3996/page-2#post-100000








