


GET
![]() |
OH MY JAPANESE CULTURE!!!! THIS IS JUST LIKE MY TRANIME GREENTEXT VIDEOS!!!!!! FUCK WOJACKSPAMMERS BTW I <3 LESBIAN HENTAI OF TWO DUDES DESU DESU DESU DESU DESU DESU SUDE |
![]() |
![]() | Some references in this article may be subject to link rot. |


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.
Use the https://getwatcher.net/ website to see when the next GET is coming. 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.
Types of GET[2][edit | edit source]
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[edit | edit source]
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[edit | edit source]
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(); } }); } |
GETs on the Sharty[edit | edit source]
See: GET/soyjak.party
GETs on 4chan[edit | edit source]
See also: Raids
![]() |
OH MY JAPANESE CULTURE!!!! THIS IS JUST LIKE MY TRANIME GREENTEXT VIDEOS!!!!!! FUCK WOJACKSPAMMERS BTW I <3 LESBIAN HENTAI OF TWO DUDES DESU DESU DESU DESU DESU DESU SUDE |
![]() |
Site-wide leaderboards[edit | edit source]
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/[edit | edit source]
999999 GET[4][edit | edit source]

1000000 GET[5][edit | edit source]
/aco/[edit | edit source]
6666666 GET[6][edit | edit source]

7999999 GET[edit | edit source]

/a/[edit | edit source]
266666666 GET[7][edit | edit source]

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

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

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/[edit | edit source]
14000000 GET[11][edit | edit source]

16666666 GET[12][edit | edit source]

18999999 and 19000000 GETs[13][14][edit | edit source]


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

/biz/[edit | edit source]
56000000[16] GET[edit | edit source]

/co/[edit | edit source]
133333333 GET[17][edit | edit source]

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

A major 'zellig GET on 'zellig thread and 'zellig day[d]
/ck/[edit | edit source]
18999999[19] and 19000000[20] GETs[edit | edit source]
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/[edit | edit source]
2888888 GET[22][edit | edit source]

/fit/[edit | edit source]
70000000 (maybe)[edit | edit source]



71000000 (maybe)[edit | edit source]


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


72999999[25] and 73000000[26] GETs[edit | edit source]


73999999 GET[edit | edit source]
A 'teen was looking to bulk up and happened upon a GET

/g/[edit | edit source]
88888888 GET[27][edit | edit source]

89000000 GET[28][edit | edit source]

91000000 GET[29][edit | edit source]

94444444 GET[edit | edit source]

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][edit | edit source]

96999999 and 97000000[32][33] GET[edit | edit source]


Flartbot GET, along with a pro-Apple 'pasta to piss off winbabies and linuxtroons.
99666666 GET[edit | edit source]

/gif/[edit | edit source]
22222222 GET[34][edit | edit source]

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


25999999[37] and 26000000[38] GETs[edit | edit source]
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[edit | edit source]
GET 29000000 was stolen by Bootists

/hc/[edit | edit source]
2222222 GET[41][edit | edit source]

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/[edit | edit source]
7000000 GET[42][edit | edit source]

This one Janny erased fast (geg).
/jp/[edit | edit source]
37999999[43] and 38000000[44] GETs[edit | edit source]


38999999[45] and 39000000[46] GETs[edit | edit source]


44444444 GET[47][edit | edit source]

This one claimed by Baby bot
47000000 and 46999999 GET[edit | edit source]

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

/k/[edit | edit source]
55555555 GET[49][edit | edit source]


57000000 GET[50][edit | edit source]

58000000 GET[51][edit | edit source]

59999999[52] & 60000000[53] GET[edit | edit source]

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/[edit | edit source]
25000000 GET[57][edit | edit source]

29999999 & 30000000 GET[edit | edit source]



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][edit | edit source]

33333333 GET[61][62][edit | edit source]

34000000 GET[63][edit | edit source]

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

38999999 GET[66][edit | edit source]
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][edit | edit source]
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][edit | edit source]
Post no. 41000000 was obtained on September 10, 2025 by Scholar, and was swiftly nuked by the jannies.

/lit/[edit | edit source]
22222222 GET[70][edit | edit source]

While 'teens agreed that this Bernkastel GET was coal, it was secured by a Sharty poster nonetheless.[71]
/news/[edit | edit source]
1222222 GET[72][edit | edit source]

get brought to you by https://soyjaks.party
1234567[73][74] GET[edit | edit source]


/p/[edit | edit source]
3999999[75], 4000000[76] GETs[edit | edit source]



4444444 GET[77][edit | edit source]

/pol/[edit | edit source]
438888888 GET[edit | edit source]
/pol/ saving GET[78]

453333333 GET[edit | edit source]
TND victory[79]

how blacksissies will recover from this one?
/pw/[edit | edit source]
4000000 GET[80][edit | edit source]

/r9k/[edit | edit source]
68000000 GET[81][edit | edit source]

69000000 GET[82][edit | edit source]
The r9k 69000000 GET was NAS, but a /qa/ joke nonetheless.

72999999[83] and 73000000[84] GETs[edit | edit source]


74000000 GET[85][edit | edit source]

75000000 GET[86][edit | edit source]

76000000 GET[87][edit | edit source]


Leebait win
[s4s][edit | edit source]
10000000 GET[88][edit | edit source]

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[89][edit | edit source]
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[90][edit | edit source]

11111111 GET[edit | edit source]

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

a neutralposter got the get, amazing isn't?
12000000 GET[92][edit | edit source]

/soc/[edit | edit source]

31999999[93] and 32000000[94] GETs[edit | edit source]


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

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


/trash/[edit | edit source]
53999999 GET[97][edit | edit source]
Almost a soylady and 'zellig W

57000000 GET[98][edit | edit source]
Whatever this thing is

58999999 GET[99][edit | edit source]

59000000 GET[100][edit | edit source]

67000000 GET [101][edit | edit source]

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.[102]
/m/[edit | edit source]
21999999 GET [103][edit | edit source]

cobson egg win
22000000 GET [104][edit | edit source]

23000000 GET [105][edit | edit source]

/v/[edit | edit source]
/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 700000000 was a failget. We all lost.
/vmg/[edit | edit source]
888888 GET[106][edit | edit source]


999999 GET[107][edit | edit source]

1111111 GET[108][edit | edit source]

/vm/[edit | edit source]
777777 GET.[109][110][111][edit | edit source]
Two hours later teens also tried to get the 53000000 GET from /trash/ yet this was taken by a cirnofag.

1000000 GET[edit | edit source]

1111111 GET[edit | edit source]

/vp/[edit | edit source]
53000000 GET[112][edit | edit source]
BWC gem, a Sharty win.

55444444 GET[113][edit | edit source]
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[114][edit | edit source]
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/[115] 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.
/vrpg/[edit | edit source]
3333333 GET[116][edit | edit source]

/vst/[edit | edit source]
999999[117] and 1000000[118] GETs[edit | edit source]


/vt/[edit | edit source]
41000000 GET[119][edit | edit source]

47277777 GET[120][edit | edit source]

56000000 GET[121][edit | edit source]

60000000 GET[122][edit | edit source]

65000000 GET[123][edit | edit source]

74999999 GET[edit | edit source]

88000000 GET[124][edit | edit source]

98999999 and 99000000 GETs[edit | edit source]


Both GETs were stolen on April 8, 2025.[127]
/wsg/[edit | edit source]
5555555 GET[edit | edit source]

5999999[128] and 6000000 GETs[129][edit | edit source]


/x/[edit | edit source]
30999999[130] and 31000000[131] GETs[edit | edit source]


34999999[132] and 35000000[133] GETs[edit | edit source]


37000000 GET[edit | edit source]

41000000 GET[134][edit | edit source]

/y/[edit | edit source]
3000000 GET[135][136][137][edit | edit source]


/e/[edit | edit source]
3000000 GET[138][edit | edit source]

GETs on Other Imageboards[edit | edit source]
Mintboard[edit | edit source]
/bone/[edit | edit source]
777777 GET[edit | edit source]
-
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[edit | edit source]

The 'unker[edit | edit source]
4000 GET[edit | edit source]

4000 GET was obtained in a confession thread by soylita poster.[139]
5000 GET[edit | edit source]

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

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[edit | edit source]

8000 GET was obtained by someone railing for pony ban.
9000 GET[edit | edit source]

9000 GET was a reply to a teen who was asking what a tripcode is.
10000 GET[edit | edit source]

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.[141]
11111 GET[edit | edit source]

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

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

Endchan[edit | edit source]
/dota/[edit | edit source]
33333 GET[edit | edit source]

69999 and 70000 GETs[143][edit | edit source]

/kanojo/[edit | edit source]
77777 GET

/pone/[edit | edit source]
9999 and 10000 GETs

/genshin/[edit | edit source]
10000 GET[edit | edit source]

19999 and 20000 GETs
Double GET win.

/agatha2/[edit | edit source]
59999, 60000, 60001 are all stolen by 'swinny members.



/hisrol/[edit | edit source]
11111 GET[edit | edit source]

/rus/[edit | edit source]
44444 GET[edit | edit source]

/rapport/[edit | edit source]
60000 GET[edit | edit source]
image to be added
Lainchan[edit | edit source]
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/[edit | edit source]
66666 GET[edit | edit source]

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


80000 GET And 79999 GET[edit | edit source]

/music/[edit | edit source]
11111[edit | edit source]

Out of pure seethe, jannies immediately locked not only the board, but the whole site.[it just is, ok?]
12345[edit | edit source]

This GET also accounted for the weird /culture/ board which is an overboard of sorts
/q/[edit | edit source]
12345[edit | edit source]

Shartyteen snitching Shemmy confirmed.
/sec/[edit | edit source]
22222[edit | edit source]

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

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.[147]
/technology/[edit | edit source]

June/2/2024, yet another Lainchan buck BROKEN.
/lit/[edit | edit source]

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

/f1/[edit | edit source]
66666 GET[edit | edit source]

/hypno/[edit | edit source]
90000 GET[149][edit | edit source]

/tingles/[edit | edit source]
30000 GET[edit | edit source]
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[edit | edit source]
/b/[edit | edit source]
222222 GET[edit | edit source]

/feels/[edit | edit source]
99999 and 100000[150] GETs[edit | edit source]
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/[edit | edit source]
30000 GET[151][edit | edit source]

Leftypol[edit | edit source]
/siberia/[edit | edit source]
666666 GET[edit | edit source]

/anime/[edit | edit source]
20000 GET[edit | edit source]

/hobby/[edit | edit source]
33333 GET[edit | edit source]

/tech/[edit | edit source]
20000 GET[edit | edit source]

22222 GET[edit | edit source]

Swedish Win
/edu/[edit | edit source]
20000 GET[edit | edit source]

Getchan[edit | edit source]
/ref/[edit | edit source]
8888 GET[152][edit | edit source]

9000 GET[153][edit | edit source]

/test/[edit | edit source]
600th GET[edit | edit source]

666th GET[edit | edit source]

700th GET[edit | edit source]

KolymaNET Vichan Demo[edit | edit source]
/news/[edit | edit source]
100th GET[edit | edit source]

jakparty.soy[edit | edit source]
/meta/[edit | edit source]
11111th GET[edit | edit source]

/raid/[edit | edit source]
777th GET[edit | edit source]

/soy/[edit | edit source]
40000 GET[154][edit | edit source]

lol look at all the frogs on here[155]
/Sharty/[edit | edit source]
11111 GET[156][edit | edit source]

12000 GET[157][edit | edit source]

15000 GET[158][edit | edit source]
Kohlchan[edit | edit source]
/pol/[edit | edit source]
123456 GET[159][edit | edit source]

/z/[edit | edit source]
60000 GET[160][edit | edit source]

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

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[edit | edit source]

2800 GET[edit | edit source]

The vortex.
/bant/[edit | edit source]
Wizardchan[edit | edit source]
/music/[edit | edit source]
10000 GET[edit | edit source]

Bantculture a.k.a tovhov.gyate.net[edit | edit source]
/bant/[edit | edit source]
999 and 1000 GET[edit | edit source]

This get is notable because Bantculture 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) [163]
60000 and 59999 GETS[edit | edit source]
These GETS were stolen by PINGAS MAN! and a Floyd poster.


gurochan.cx (now guro.cx)[edit | edit source]
/g/[edit | edit source]
99999 and 100000 GETs[edit | edit source]

COB GET
Swinny[edit | edit source]
/soy/[edit | edit source]
6666 GET[edit | edit source]

50000 GET[edit | edit source]

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/[edit | edit source]
10 GET[edit | edit source]

/dalwa/[edit | edit source]
75 GET[edit | edit source]

/nigger/[edit | edit source]
10 GET[edit | edit source]
The Kuzzy[edit | edit source]
/soy/[edit | edit source]
22222 GET[edit | edit source]

Heyuri[edit | edit source]
/b/[edit | edit source]
99999 & 100000 GETs[164][edit | edit source]


Squirreljak.party[edit | edit source]
/meta/[edit | edit source]
35 GET[edit | edit source]

>Threat Level Green won
>Algeria lost
40 GET[edit | edit source]

>Threat Level Green won
>Antartica lost
45 GET[edit | edit source]

>Threat Level Green won
>Aruba lost
50 GET[edit | edit source]

>Threat Level Green won
>Bahrain lost
Desuarchive.org[edit | edit source]
/meta/[edit | edit source]
19999 & 20000 GETs[edit | edit source]

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

121 GET[edit | edit source]

420 GET[edit | edit source]

777 GET[edit | edit source]

1221 GET[edit | edit source]

1350 GET[edit | edit source]

1488 GET[edit | edit source]

4444 GET[edit | edit source]

5013 GET[edit | edit source]

6969 GET[edit | edit source]

7777 GET[167][edit | edit source]

12321 GET[edit | edit source]

44444 GET[edit | edit source]

42069 GET[edit | edit source]

69420 GET[edit | edit source]

88888 GET[edit | edit source]

99999 GET[edit | edit source]

100000 GET[edit | edit source]

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.62
times 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.
Citations
- ↑ 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://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://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://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/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://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://soyjak.blog/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