{"id":13614379,"url":"https://github.com/sinkaroid/cabul","last_synced_at":"2025-04-05T21:32:32.737Z","repository":{"id":41359837,"uuid":"351224015","full_name":"sinkaroid/cabul","owner":"sinkaroid","description":"Subreddit API but proxied and NSFW only..","archived":false,"fork":false,"pushed_at":"2022-06-30T23:53:45.000Z","size":201,"stargazers_count":56,"open_issues_count":0,"forks_count":10,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-03-21T12:08:15.468Z","etag":null,"topics":["nsfw","reddit","reddit-api"],"latest_commit_sha":null,"homepage":"https://sinkaroid.github.io/cabul","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/sinkaroid.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":"CONTRIBUTING.md","funding":".github/FUNDING.yml","license":"LICENSE","code_of_conduct":"CODE_OF_CONDUCT.md","threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":"SECURITY.md","support":null},"funding":{"github":"sinkaroid","custom":"https://paypal.me/sinkaroid"}},"created_at":"2021-03-24T21:10:50.000Z","updated_at":"2025-03-04T06:52:53.000Z","dependencies_parsed_at":"2022-08-10T02:22:58.345Z","dependency_job_id":null,"html_url":"https://github.com/sinkaroid/cabul","commit_stats":null,"previous_names":[],"tags_count":1,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sinkaroid%2Fcabul","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sinkaroid%2Fcabul/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sinkaroid%2Fcabul/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sinkaroid%2Fcabul/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/sinkaroid","download_url":"https://codeload.github.com/sinkaroid/cabul/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":246763826,"owners_count":20829798,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["nsfw","reddit","reddit-api"],"created_at":"2024-08-01T20:01:00.830Z","updated_at":"2025-04-05T21:32:32.386Z","avatar_url":"https://github.com/sinkaroid.png","language":"TypeScript","funding_links":["https://github.com/sponsors/sinkaroid","https://paypal.me/sinkaroid"],"categories":["JavaScript"],"sub_categories":[],"readme":"\u003cdiv align=\"center\"\u003e\n\u003cimg width=\"600\" src=\"https://cdn.discordapp.com/attachments/952117487166705747/952118781944143912/node-cabul.png\" alt=\"cabul!\"\u003e\n\n# Cabul [![Build and documentation](https://github.com/sinkaroid/cabul/actions/workflows/docs.yml/badge.svg)](https://github.com/sinkaroid/cabul/actions/workflows/docs.yml) [![Maintainability](https://api.codeclimate.com/v1/badges/90b543fc3495b932488a/maintainability)](https://codeclimate.com/github/sinkaroid/cabul/maintainability)\nCabul guide you to the NSFW world of reddit.\n\nThis module exist as a directory of all popular NSFW-related subreddits.\nThe endpoints that cabul handle is hand-picked and curated by the whole community, data taken is always wholesome, and easy to use check your intelisense.\n\n\u003ca href=\"#table-of-subreddit\"\u003eTable of Subreddit\u003c/a\u003e •\n\u003ca href=\"https://sinkaroid.github.io/cabul\"\u003eDocumentation\u003c/a\u003e •\n\u003ca href=\"https://github.com/sinkaroid/cabul/blob/master/CONTRIBUTING.md\"\u003eAdd new endpoint\u003c/a\u003e\n\u003c/div\u003e\n\n----\n\nThis wrapper is for NodeJS, If you want to build web server on your own instance check it out the proxy branch: https://github.com/sinkaroid/cabul/tree/proxy\n\n## Features\n\n- **Featureful**: resolves and interacts with ease\n- **Fancy functional**: out of the box\n- **Curated** by the whole community\n- **Arbitrary**: GET request will be support as well\n- **Easy to use**: check your intelisense\n- **All in one**: packed with hentai, irl, and memes\n\n## Prerequisites\n\n- Node.js v12 or above.\n- Can parse JSON\n\n## Installation\n\n`npm install cabul / yarn add cabul`\n\n\n## Example\n**Here I'll show you how to import either `hentai`, `irl`, or `meme`**\n\n```js\nconst { Cabul } = require('cabul');\nconst reddit = new Cabul()\n\n// To use and import hentai only\nreddit.hentai(\"ahegao\", \"hot\").then(res =\u003e {\n    console.log(res); // Returns a object \n});\n\n// To use and import irl only\nreddit.irl(\"gonewild\", \"top\").then(res =\u003e {\n  console.log(res); // Returns a object \n});\n\n// To use and import memes only\nreddit.meme(\"hentaimemes\", \"controversial\").then(res =\u003e {\n  console.log(res); // Returns a object \n});\n```\n*That above one will returns a single random posts object.*\n\n**If you dont want to get random, you can set the third parameter to `true`**\n\n```js\nreddit.hentai(\"atago\", \"hot\", true).then(res =\u003e {\n  console.log(res); // Returns a object \n});\n```\n*That above one will represents the 25 object posts.*\n\nNot sure what the parameter looks like? Check your intelisense.\n\n**Takes parameters:**\n\n- Required: **type** (String, Check [endpoint.json](./endpoint.json)) The related endpoint of subreddit.\n  - If not provided, it will throw you an error.\n- Optional: **sortby** (String, Should be: `hot` | `new` | `top` | `controversial`) Gets data according popularity.\n  - If not provided, it will be random between hot, new, top, and controversial.\n- Optional: **no_random** (Boolean) If true, will returns 25 list instead of 1 random.\n  - If not provided, it will default to `false`.\n\n**Returns:** Single object or 25 list of object (if third parameter is true) that represents the data.\n\n\n## Documentation\n\nThe documentation can be found [https://sinkaroid.github.io/cabul](https://sinkaroid.github.io/cabul)\n\n- ### reddit.hentai(options)\n  - Gets random or list data from related hentai subreddit.\n\n- ### reddit.irl(options)\n  - Gets random or list data from related irl nsfw subreddit.\n\n- ### reddit.memes(options)\n  - Gets random or list data from related nsfw memes subreddit.\n\n## Table of subreddit\nHere the list of popular subreddit that cabul can handle.  \nSometime specific subreddit is not available or maybe is ban, it will throw you an\nerror.\n\n### Hentai\n\n\u003csummary\u003eThe list of popular hentai subreddit.\u003c/summary\u003e\n\n| Name             | Subreddit                                                              | Description                                                                                                              |\n|------------------|------------------------------------------------------------------------|--------------------------------------------------------------------------------------------------------------------------|\n| hentai           | [/r/Hentai](https://www.reddit.com/r/Hentai)                           | For all Japanese-style 18+ art                                                                                           |\n| ecchi            | [/r/Ecchi](https://www.reddit.com/r/Ecchi)                             | For lewd artwork without a male presence.                                                                                |\n| netorare         | [/r/netorare](https://www.reddit.com/r/netorare)                       | A subreddit dedicated to netorare, or cuckold                                                                            |\n| kemonomimi       | [/r/kemonomimi](https://www.reddit.com/r/kemonomimi)                   | Animal girls                                                                                                             |\n| yuri             | [/r/Yuri](https://www.reddit.com/r/Yuri)                               | Girl-on-girl action                                                                                                      |\n| thicc            | [/r/Thighdeology](https://www.reddit.com/r/Thighdeology)               | A subreddit dedicated to thicc thighs                                                                                    |\n| ahegao           | [/r/Ahegao](https://www.reddit.com/r/Ahegao)                           | Hentai where the woman is \"fucked silly\"                                                                                 |\n| monster          | [/r/Monstergirl](https://www.reddit.com/r/Monstergirl)                 | Where the woman has more than just animal ears/tail                                                                      |\n| bondage          | [/r/Hentaibondage](https://www.reddit.com/r/Hentaibondage)             | Hentai focused on bondage                                                                                                |\n| trap             | [/r/traphentai](https://www.reddit.com/r/traphentai)                   | Traps and traps being fucked.                                                                                            |\n| pantsu           | [/r/Pantsu](https://www.reddit.com/r/Pantsu)                           | A subreddit dedicated to fanservice moments and artworks of anime/manga/visual novels                                    |\n| milf             | [/r/AnimeMILFS](https://www.reddit.com/r/AnimeMILFS)                   | Anime mothers you want to fuck                                                                                           |\n| zettairyouiki    | [/r/ZettaiRyouiki](https://www.reddit.com/r/ZettaiRyouiki)             | The strip of visible skin between a skirt and high socks                                                                 |\n| nekomimi         | [/r/Nekomimi/](https://www.reddit.com/r/Nekomimi/)                     | Cat girls                                                                                                                |\n| paizuri          | [/r/Paizuri](https://www.reddit.com/r/Paizuri)                         | Hentai titjobs                                                                                                           |\n| booty            | [/r/Animebooty](https://www.reddit.com/r/Animebooty)                   | An ass subreddit. That's all.                                                                                            |\n| waifusgonewild   | [/r/Waifusgonewild](https://www.reddit.com/r/Waifusgonewild)           | Anime girls taking lewd selfies                                                                                          |\n| gameovergirls    | [/r/GameOverGirls](https://www.reddit.com/r/GameOverGirls)             | Girls being dominated as if in a \"Game Over\" sequence.                                                                   |\n| sukebei          | [/r/Sukebei](https://www.reddit.com/r/Sukebei)                         | Naked anime girls                                                                                                        |\n| cum              | [/r/CumHentai](https://www.reddit.com/r/CumHentai)                     | Cum. Lots of it.                                                                                                         |\n| corruptionhentai | [/r/Corruptionhentai](https://www.reddit.com/r/Corruptionhentai)       | Hentai Subreddit focused on the corruption of the innocent. Debauch the pure heroines and the like.                      |\n| chiisai          | [/r/Chiisaihentai](https://www.reddit.com/r/Chiisaihentai)             | A subreddit dedicated to tiny boobs                                                                                      |\n| muchi            | [/r/Muchihentai](https://www.reddit.com/r/Muchihentai)                 | Anime girls with a bit of extra meat on them                                                                             |\n| tentai           | [/r/Tentai/](https://www.reddit.com/r/Tentai/)                         | Where the woman is fucked by tentacles                                                                                   |\n| dekai            | [/r/Dekaihentai](https://www.reddit.com/r/Tentai/)                     | A subreddit dedicated to huge boobs                                                                                      |\n| yaoi             | [/r/Yaoi](https://www.reddit.com/r/Yaoi)                               | Guy-on-guy action                                                                                                        |\n| oral             | [/r/OralHentai](https://www.reddit.com/r/Animemidriff)                 | A subreddit dedicated to all things oral                                                                                 |\n| armpits          | [/r/AnimeArmpits](https://www.reddit.com/r/AnimeArmpits)               | Armpits of cute anime girls                                                                                              |\n| bodysuits        | [/r/Animebodysuits](https://www.reddit.com/r/Animebodysuits)           | Form fitting clothing that shows it all                                                                                  |\n| rippedlegwear    | [/r/rippedanimelegwear ](https://www.reddit.com/r/rippedanimelegwear)  | Dedicated to ripped anime legwear                                                                                        |\n| atago            | [/r/Atago](https://www.reddit.com/r/Atago)                             | A subreddit dedicated to the character Atago from Azur Lane                                                              |\n| handbras         | [/r/Animehandbras](https://www.reddit.com/r/Animehandbras)             | Where the women substitute a bra with their hands and arms                                                               |\n| elf              | [/r/ElfHentai](https://www.reddit.com/r/ElfHentai)                     | Dedicated to hentai with Elves (CURRENTLY BANNED)                                                                        |\n| ecchibondage     | [/r/EcchiBondage](https://www.reddit.com/r/EcchiBondage)               | Like hentai bondage, just less lewd                                                                                      |\n| cleavage         | [/r/HentaiCleavage](https://www.reddit.com/r/HentaiCleavage)           | Juicy cleavage                                                                                                           |\n| maid             | [/r/MaidHentai](https://www.reddit.com/r/MaidHentai)                   | Hentai with maids                                                                                                        |\n| usagi            | [/r/Usagimimi](https://www.reddit.com/r/Usagimimi)                     | Bunny girls                                                                                                              |\n| lactation        | [/r/Hentailactation](https://www.reddit.com/r/Hentailactation)         | A subreddit dedicated to art depicting erotic lactation.                                                                 |\n| feet             | [/r/AshiHentai](https://www.reddit.com/r/AshiHentai)                   | A subreddit dedicated to juicy anime feet                                                                                |\n| lewd             | [/r/LewdAnimeGirls](https://www.reddit.com/r/LewdAnimeGirls)           | A smaller version of r/Ecchi                                                                                             |\n| taihou           | [/r/Taihou](https://www.reddit.com/r/Taihou)                           | A subreddit dedicated the the characte Taihou from Azur Lane                                                             |\n| christmascake    | [/r/ChristmasCake](https://www.reddit.com/r/ChristmasCake)             | Where the woman is unmarried and over the age of 25, thus, \"unsold\" before the 25th of december. hence, a Christmas cake |\n| rikka            | [/r/ChurchOfRikka](https://www.reddit.com/r/ChurchOfRikka)             | A subreddit dedicated to the character Rikka Takarada from SSSS.Gridman.                                                 |\n| hearts           | [/r/HentaiHearts](https://www.reddit.com/r/HentaiHearts)               | A hentai subreddits with hearts as a focus, particularly in the eyes                                                     |\n| bisex            | [/r/BisexualHentai](https://www.reddit.com/r/BisexualHentai)           | A hentai subreddit with a bisexual focus                                                                                 |\n| smothering       | [/r/HentaiSmothering](https://www.reddit.com/r/HentaiSmothering)       | Where the woman smothers another person with her body                                                                    |\n| vacuum           | [/r/VacuumHentai](https://www.reddit.com/r/VacuumHentai)               | Women vacuum sealed in bags                                                                                              |\n| humiliation      | [/r/HentaiHumiliation](https://www.reddit.com/r/HentaiHumiliation)     | Where the woman is degraded and humiliated                                                                               |\n| forniphilia      | [/r/HentaiForniphilia](https://www.reddit.com/r/HentaiForniphilia)     | Where the woman is turned into an object                                                                                 |\n| officelady       | [/r/OfficeLady](https://www.reddit.com/r/OfficeLady)                   | For business dressed women                                                                                               |\n| dtittytouching   | [/r/2DTittyTouching](https://www.reddit.com/r/2DTittyTouching)         | For drawn titties touching other drawn titties.                                                                          |\n| inumimi          | [/r/inumimi](https://www.reddit.com/r/inumimi)                         | Doggirls                                                                                                                 |\n| cumsluts         | [/r/HentaiCumsluts](https://www.reddit.com/r/HentaiCumsluts)           | Girls who love being covered in cum.                                                                                     |\n| heterochromia    | [/r/Heterochromiahentai](https://www.reddit.com/r/Heterochromiahentai) | Girls with different coloured eyes                                                                                       |\n| ai               | [/r/MechanicalSluts](https://www.reddit.com/r/MechanicalSluts)         | A porn subreddit for androids, AI, cyborgs etc                                                                           |\n| pokeporn         | [/r/PokePorn](https://www.reddit.com/r/PokePorn)                       | Pokemon-themed porn                                                                                                      |\n| rule34           | [/r/rule34](https://www.reddit.com/r/rule34)                           | If it exists, there exists porn of it, likely found here                                                                 |\n| western          | [/r/WesternHentai](https://www.reddit.com/r/WesternHentai)             | Hentai in a western style                                                                                                |\n| lol              | [/r/Rule34LoL](https://www.reddit.com/r/Rule34LoL)                     | League Of Legends-themed porn                                                                                            |\n| arknuts          | [/r/Arknuts](https://www.reddit.com/r/Arknuts)                         | Arknights- themed porn                                                                                                   |\n| overwatch        | [/r/Overwatch_Porn](https://www.reddit.com/r/Overwatch_Porn)           | Overwatch-themed porn                                                                                                    |\n| twob             | [/r/2Booty](https://www.reddit.com/r/2Booty)                           | NieR: Automata-themed porn                                                                                               |\n| kanmusunights    | [/r/KanMusuNights](https://www.reddit.com/r/2Booty)                    | Kantai Collection-themed porn                                                                                            |\n\n### IRL\n\n\u003csummary\u003eThe list of popular Irl nsfw subreddit.\u003c/summary\u003e\n\n| Name                    | Subreddit                     | Description                                                                                         |\n|-------------------------|-------------------------------|-----------------------------------------------------------------------------------------------------|\n| r/gonewild              | [/r/gonewild](#)              | Reddit Gone Wild - A Decade of Debauchery -  million +                                              |\n| r/nsfw                  | [/r/nsfw](#)                  | Not Safe for Work                                                                                   |\n| r/NSFW_GIF              | [/r/NSFW_GIF](#)              | NSFW_GIF                                                                                            |\n| r/RealGirls             | [/r/RealGirls](#)             | The Real Girls of Reddit                                                                            |\n| r/ImGoingToHellForThis  | [/r/ImGoingToHellForThis](#)  | Where school shooters post before they are CNN-famous                                               |\n| r/holdthemoan           | [/r/holdthemoan](#)           | r/holdthemoan: girls trying to get away with being naughty in socially risky situations             |\n| r/BustyPetite           | [/r/BustyPetite](#)           | Busty Petite                                                                                        |\n| r/cumsluts              | [/r/cumsluts](#)              | The stickiest place on reddit!                                                                      |\n| r/nsfw_gifs             | [/r/nsfw_gifs](#)             | Satisfying your mom since 2010                                                                      |\n| r/LegalTeens            | [/r/LegalTeens](#)            | Legal Teens                                                                                         |\n| r/PetiteGoneWild        | [/r/PetiteGoneWild](#)        | GoneWild for small/petite girls                                                                     |\n| r/adorableporn          | [/r/adorableporn](#)          | Adorable Porn                                                                                       |\n| r/GirlsFinishingTheJob  | [/r/GirlsFinishingTheJob](#)  | GirlsFinishingTheJob                                                                                |\n| r/Amateur               | [/r/Amateur](#)               | Amateur Pics                                                                                        |\n| r/AsiansGoneWild        | [/r/AsiansGoneWild](#)        | An outlet for Asian women to express their sexuality                                                |\n| r/rule34                | [/r/rule34](#)                | rule34                                                                                              |\n| r/BiggerThanYouThought  | [/r/BiggerThanYouThought](#)  | Tits \u003c3                                                                                             |\n| r/porninfifteenseconds  | [/r/porninfifteenseconds](#)  | Porn in Fifteen Seconds                                                                             |\n| r/ass                   | [/r/ass](#)                   | The Callipygian reddit                                                                              |\n| r/TittyDrop             | [/r/TittyDrop](#)             | Let dem titties drop!                                                                               |\n| r/collegesluts          | [/r/collegesluts](#)          | Slutty College Girls!                                                                               |\n| r/pawg                  | [/r/pawg](#)                  | Phat Ass White Girls                                                                                |\n| r/HappyEmbarrassedGirls | [/r/HappyEmbarrassedGirls](#) | Happy embarrassed girls bring great joy to everybody!                                               |\n| r/NSFWFunny             | [/r/NSFWFunny](#)             | Humorous, NSFW content                                                                              |\n| r/milf                  | [/r/milf](#)                  | The MILF Reddit                                                                                     |\n| r/OnOff                 | [/r/OnOff](#)                 | When imagination just isn't enough                                                                  |\n| r/hentai                | [/r/hentai](#)                | Hentai                                                                                              |\n| r/LipsThatGrip          | [/r/LipsThatGrip](#)          | LipsThatGrip : We've got the grippiest lips                                                         |\n| r/porn                  | [/r/porn](#)                  | You'll know it when you see it.                                                                     |\n| r/Boobies               | [/r/Boobies](#)               | Boobies                                                                                             |\n| r/celebnsfw             | [/r/celebnsfw](#)             | Celebrity NSFW Photos                                                                               |\n| r/Blowjobs              | [/r/Blowjobs](#)              | Blowjobs                                                                                            |\n| r/GWCouples             | [/r/GWCouples](#)             | Gonewild: Couples Edition                                                                           |\n| r/nsfwhardcore          | [/r/nsfwhardcore](#)          | NSFW Hardcore                                                                                       |\n| r/WatchItForThePlot     | [/r/WatchItForThePlot](#)     | We're all about the Plot                                                                            |\n| r/dirtysmall            | [/r/dirtysmall](#)            | Little tits, big action action action!                                                              |\n| r/homemadexxx           | [/r/homemadexxx](#)           | Homemade Porn Videos                                                                                |\n| r/trashyboners          | [/r/trashyboners](#)          | Maybe a true hot mess?                                                                              |\n| r/nsfwcosplay           | [/r/nsfwcosplay](#)           | For Cosplay Nudity and Sex                                                                          |\n| r/gonewildcurvy         | [/r/gonewildcurvy](#)         | GWC: Where redditors can flaunt their curves                                                        |\n| r/girlsinyogapants      | [/r/girlsinyogapants](#)      | Girls In Yoga Pants                                                                                 |\n| r/juicyasians           | [/r/juicyasians](#)           | Women of the East with a little extra oomph                                                         |\n| r/asstastic             | [/r/asstastic](#)             | Where every day is hump day!                                                                        |\n| r/palegirls             | [/r/palegirls](#)             | Pale Girls: Porcelain-skinned beauties                                                              |\n| r/pussy                 | [/r/pussy](#)                 | The happiest place on Earth!                                                                        |\n| r/60fpsporn             | [/r/60fpsporn](#)             | 60fpsporn                                                                                           |\n| r/NSFW_Snapchat         | [/r/NSFW_Snapchat](#)         | NSFW Snapchat                                                                                       |\n| r/curvy                 | [/r/curvy](#)                 | /r/curvy: Buxom babes, voluptuous vixens, curvy cuties, plump peaches, hotties w/ hourglass figures |\n| r/freeuse               | [/r/freeuse](#)               | freeuse - worlds where women are willing                                                            |\n| r/StraightGirlsPlaying  | [/r/StraightGirlsPlaying](#)  | StraightGirlsPlaying                                                                                |\n| r/gonewildplus          | [/r/gonewildplus](#)          | Gone Wild, 30+ Year Olds!                                                                           |\n| r/workgonewild          | [/r/workgonewild](#)          | Gone Wild At Work                                                                                   |\n| r/anal                  | [/r/anal](#)                  | Anal                                                                                                |\n| r/AsianHotties          | [/r/AsianHotties](#)          | Women from the Orient to the Indian sub-continent!                                                  |\n| r/FestivalSluts         | [/r/FestivalSluts](#)         | /r/FestivalSluts: If you know, you know.                                                            |\n| r/TinyTits              | [/r/TinyTits](#)              | For all your small-breasted needs                                                                   |\n| r/wifesharing           | [/r/wifesharing](#)           | Wife Sharing and Hotwife Pictures and Videos (NSFW)                                                 |\n| r/thick                 | [/r/thick](#)                 | Thick                                                                                               |\n| r/lesbians              | [/r/lesbians](#)              | Lesbians: NSFW Photos and Gifs                                                                      |\n| r/GodPussy              | [/r/GodPussy](#)              | God Pussy- The best HD pussy pics on reddit                                                         |\n| r/MorbidReality         | [/r/MorbidReality](#)         | The darkest recesses of humanity                                                                    |\n| r/grool                 | [/r/grool](#)                 | Grool = Girl Drool                                                                                  |\n| r/pornvids              | [/r/pornvids](#)              | Porn Videos, Streaming Porn, Hard Sex                                                               |\n| r/gonewildstories       | [/r/gonewildstories](#)       | Gonewild Stories                                                                                    |\n| r/gwcumsluts            | [/r/gwcumsluts](#)            | Cum-covered Redditors                                                                               |\n| r/GirlswithGlasses      | [/r/GirlswithGlasses](#)      | Girls with Glasses (Some NSFW)                                                                      |\n| r/bodyperfection        | [/r/bodyperfection](#)        | Show us your definition of perfect.                                                                 |\n| r/rearpussy             | [/r/rearpussy](#)             | Pussy from the rear                                                                                 |\n| r/NSFW411               | [/r/NSFW411](#)               | NSFW411                                                                                             |\n| r/quiver                | [/r/quiver](#)                | Quiver: Shaking Orgasm GIFs \u0026 Vids                                                                  |\n| r/ginger                | [/r/ginger](#)                | For all the ginger lovers out there                                                                 |\n| r/redheads              | [/r/redheads](#)              | redheads: because redder is better                                                                  |\n| r/JizzedToThis          | [/r/JizzedToThis](#)          | Show us what made you cum.                                                                          |\n| r/BigBoobsGW            | [/r/BigBoobsGW](#)            | Big Boobs Gonewild                                                                                  |\n| r/Stacked               | [/r/Stacked](#)               | Stacked: For the Enjoyment of Topheavy Females                                                      |\n| r/Hotwife               | [/r/Hotwife](#)               | Hotwife Lifestyle Subreddit                                                                         |\n| r/whenitgoesin          | [/r/whenitgoesin](#)          | When It Goes In: The First Moment of Pleasure                                                       |\n| r/TooCuteForPorn        | [/r/TooCuteForPorn](#)        | Too cute for porn                                                                                   |\n| r/SexInFrontOfOthers    | [/r/SexInFrontOfOthers](#)    | SexInFrontOfOthers                                                                                  |\n| r/gettingherselfoff     | [/r/gettingherselfoff](#)     | Gifs and video of girls masturbating.                                                               |\n| r/darkjokes             | [/r/darkjokes](#)             | Jokes by dark people, for dark people. Mayos get out!                                               |\n| r/gonewildaudio         | [/r/gonewildaudio](#)         | For Those Aroused By Sound                                                                          |\n| r/18_19                 | [/r/18_19](#)                 | Girls 18 and 19 yo                                                                                  |\n| r/bigasses              | [/r/bigasses](#)              | Big asses on beautiful ladies                                                                       |\n| r/boobbounce            | [/r/boobbounce](#)            | Titties in sweet, sweet motion.                                                                     |\n| r/creampies             | [/r/creampies](#)             | Payload delivery                                                                                    |\n| r/porn_gifs             | [/r/porn_gifs](#)             | Hard,Sexy,Porn Gifs                                                                                 |\n| r/theratio              | [/r/theratio](#)              | hips:waist                                                                                          |\n| r/tightdresses          | [/r/tightdresses](#)          | /r/tightdresses - Hot babes in tight dresses                                                        |\n| r/Hotchickswithtattoos  | [/r/Hotchickswithtattoos](#)  | Hot Chicks With Tattoos                                                                             |\n| r/burstingout           | [/r/burstingout](#)           | For pictures of women whose tops cannot contain their assets                                        |\n| r/facedownassup         | [/r/facedownassup](#)         | Girls with their face down and ass up in the air.                                                   |\n| r/BreedingMaterial      | [/r/BreedingMaterial](#)      | For Fertility Goddesses                                                                             |\n| r/GoneWildTube          | [/r/GoneWildTube](#)          | Gonewild Tube - Amateur 'Gonewild' NSFW Videos                                                      |\n| r/altgonewild           | [/r/altgonewild](#)           | Alternative Gone Wild                                                                               |\n| r/O_Faces               | [/r/O_Faces](#)               | 'O' Faces. Faces of Ecstasy.                                                                        |\n| r/amateurcumsluts       | [/r/amateurcumsluts](#)       | Amateur Cumsluts                                                                                    |\n| r/hugeboobs             | [/r/hugeboobs](#)             | Huge Boobs: for when more than a handful is just getting started                                    |\n| r/SheLikesItRough       | [/r/SheLikesItRough(#)        | SheLikesItRough                                                                                     |\n| r/suicidegirls          | [/r/suicidegirls](#)          | SuicideGirls.com on Reddit                                                                          |\n| r/CuteLittleButts       | [/r/CuteLittleButts](#)       | Cute Little Butts                                                                                   |\n| r/tipofmypenis          | [/r/tipofmypenis](#)          | TOMP - To find the unfindable source                                                                |\n| r/RandomActsOfBlowJob   | [/r/RandomActsOfBlowJob](#)   | RAOB. Matching mouths and members                                                                   |\n| r/fitgirls              | [/r/fitgirls](#)              | Fit Girls                                                                                           |\n| r/Upskirt               | [/r/Upskirt](#)               | Upskirt Fun                                                                                         |\n \n\n### Memes\n\n\u003csummary\u003eThe list of popular nsfw memes subreddit.\u003c/summary\u003e\n\n| Name                    | Subreddit                                                                   | Description           |\n|-------------------------|-----------------------------------------------------------------------------|-----------------------|\n| r/SexuallyExplicitMemes | [/r/SexuallyExplicitMemes](https://www.reddit.com/r/SexuallyExplicitMemes/) | SexuallyExplicitMemes |\n| NSFWFunny               | [/r/NSFWFunny](https://www.reddit.com/r/NSFWFunny/)                         | NSFWFunny             |\n| DeepFriedHentai         | [/r/DeepFriedHentai](https://www.reddit.com/r/DeepFriedHentai/)             | DeepFriedHentai       |\n| PornMemes               | [/r/PornMemes](https://www.reddit.com/r/PornMemes/)                         | PornMemes             |\n| hentaimemes             | [/r/hentaimemes](https://www.reddit.com/r/hentaimemes/)                     | hentaimemes           |\n| hentaidankmemes         | [/r/hentaidankmemes](https://www.reddit.com/r/hentaidankmemes/)             | hentaidankmemes       |\n| Hentai_memes            | [/r/Hentai_memes](https://www.reddit.com/r/Hentai_memes/)                   | Hentai_memes          |\n| NsfwAnimemes            | [/r/NsfwAnimemes](https://www.reddit.com/r/NsfwAnimemes/)                   | NsfwAnimemes          | \n| PornoMemes              | [/r/PornoMemes](https://www.reddit.com/r/PornoMemes/)                       | PornoMemes            |\n \n\n\n## Results:\n\n`no_random` is default false and will return a single object.\nOtherwise it will return a list (25 posts) if `no_random` is true.\n\nUseful keys:\n- **res.data** parent object\n- **res.data.url_overridden_by_dest** actionable image/videos/gifs\n- **res.data.permalink** actionable links\n- **res.data.title** title post\n- **res.data.subreddit_name_prefixed** name of the subreddit. eg: /r/ahegao\n- **res.data.score** number of score\n- **res.data.subreddit_subscribers** number of subscribers\n- **res.data.num_comments** number of comment in a post related\n- **res.data.ups** number of upvotes\n- ~~**res.data.downs** number of downvotes~~\n- ..and more, see below:\n\n```js\n{\n  kind: 't3',\n  data: {\n    approved_at_utc: null,\n    subreddit: 'Atago',\n    selftext: '',\n    author_fullname: 't2_13mkmqwt',\n    saved: false,\n    mod_reason_title: null,\n    gilded: 0,\n    clicked: false,\n    title: 'Atagos big behind',\n    link_flair_richtext: [],\n    subreddit_name_prefixed: 'r/Atago',\n    hidden: false,\n    pwls: null,\n    link_flair_css_class: '',\n    downs: 0,\n    thumbnail_height: 78,\n    top_awarded_type: null,\n    hide_score: false,\n    name: 't3_oh8uqe',\n    quarantine: false,\n    link_flair_text_color: 'dark',\n    upvote_ratio: 0.99,\n    author_flair_background_color: null,\n    subreddit_type: 'public',\n    ups: 534,\n    total_awards_received: 3,\n    media_embed: {},\n    thumbnail_width: 140,\n    author_flair_template_id: null,\n    is_original_content: false,\n    user_reports: [],\n    secure_media: null,\n    is_reddit_media_domain: true,\n    is_meta: false,\n    category: null,\n    secure_media_embed: {},\n    link_flair_text: 'Atago',\n    can_mod_post: false,\n    score: 534,\n    approved_by: null,\n    is_created_from_ads_ui: false,\n    author_premium: false,\n    thumbnail: 'https://b.thumbs.redditmedia.com/Rsh6Og-AsGTpfsAPlR1OOCr4voR3CAL5X0fX1IihAMM.jpg',\n    edited: false,\n    author_flair_css_class: null,\n    author_flair_richtext: [],\n    gildings: {},\n    post_hint: 'image',\n    content_categories: null,\n    is_self: false,\n    mod_note: null,\n    created: 1625907932,\n    link_flair_type: 'text',\n    wls: null,\n    removed_by_category: null,\n    banned_by: null,\n    author_flair_type: 'text',\n    domain: 'i.redd.it',\n    allow_live_comments: false,\n    selftext_html: null,\n    likes: null,\n    suggested_sort: null,\n    banned_at_utc: null,\n    url_overridden_by_dest: 'https://i.redd.it/aabldcpvbaa71.jpg',\n    view_count: null,\n    archived: false,\n    no_follow: false,\n    is_crosspostable: false,\n    pinned: false,\n    over_18: true,\n    preview: { images: [Array], enabled: true },\n    all_awardings: [ [Object], [Object] ],\n    awarders: [],\n    media_only: false,\n    link_flair_template_id: '15f3d18e-14cc-11eb-93fc-0e629d02b757',\n    can_gild: false,\n    spoiler: false,\n    locked: false,\n    author_flair_text: null,\n    treatment_tags: [],\n    visited: false,\n    removed_by: null,\n    num_reports: null,\n    distinguished: null,\n    subreddit_id: 't5_qdbs8',\n    mod_reason_by: null,\n    removal_reason: null,\n    link_flair_background_color: '',\n    id: 'oh8uqe',\n    is_robot_indexable: true,\n    report_reasons: null,\n    author: 'verlene10',\n    discussion_type: null,\n    num_comments: 5,\n    send_replies: true,\n    whitelist_status: null,\n    contest_mode: false,\n    mod_reports: [],\n    author_patreon_flair: false,\n    author_flair_text_color: null,\n    permalink: '/r/Atago/comments/oh8uqe/atagos_big_behind/',\n    parent_whitelist_status: null,\n    stickied: false,\n    url: 'https://i.redd.it/aabldcpvbaa71.jpg',\n    subreddit_subscribers: 24088,\n    created_utc: 1625879132,\n    num_crossposts: 1,\n    media: null,\n    is_video: false\n  }\n}\n```\n\n## Todo\nSince i've using this wrapper on Node.js application, hence the other language is not supported yet.\n\nFeature support:\n- [x] Hentai\n- [x] Irl\n- [x] Memes\n\nMultilingual support:\n- [ ] Python modules\n- [ ] Deno wrapper\n- [ ] Ruby gem\n\n## Legal\n\nThis tool can be freely copied, modified, altered, distributed without any attribution whatsoever. However, if you feel\nlike this tool deserves an attribution, mention it. It won't hurt anybody :)\n\nPlease, read the [license terms](LICENSE). Don't worry, it can be read in less than 30 seconds, unless you have some\nsort of reading disability - in that case, I'm wondering why you're still reading this text. Really. Stop. Please. I\nmean, seriously. Why are you still reading?\n\n## Pronunciation\n[`id_ID`](https://www.localeplanet.com/java/id-ID/index.html) • **/ca·bul/** — sange dan kotor / melanggar kesopanan _(?)_ offensive in a sexual way.\n\n## Acknowledgements\n\nSince this tool includes some contributions, and I'm not an asshole, I'll publically thank the following users for their\nhelp:\n\n- [/r/Hentai](https://www.reddit.com/r/hentai) actionable endpoints [#hentai](#hentai)\n- [/r/NSFW411](https://www.reddit.com/r/NSFW411) actionable endpoints [#irl](#irl)","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsinkaroid%2Fcabul","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsinkaroid%2Fcabul","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsinkaroid%2Fcabul/lists"}