This is page 11 of 11. Use http://codebase.md/tuananh/hyper-mcp?lines=true&page={x} to view the full context.
# Directory Structure
```
├── .cursor
│ └── rules
│ └── print-ctx-size.mdc
├── .dockerignore
├── .github
│ ├── renovate.json5
│ └── workflows
│ ├── ci.yml
│ ├── nightly.yml
│ └── release.yml
├── .gitignore
├── .gitmodules
├── .hadolint.yaml
├── .pre-commit-config.yaml
├── .windsurf
│ └── rules
│ ├── print-ctx-size.md
│ └── think.md
├── assets
│ ├── cursor-mcp-1.png
│ ├── cursor-mcp.png
│ ├── eval-py.jpg
│ └── logo.png
├── Cargo.lock
├── Cargo.toml
├── config.example.json
├── config.example.yaml
├── CREATING_PLUGINS.md
├── DEPLOYMENT.md
├── Dockerfile
├── examples
│ └── plugins
│ ├── v1
│ │ ├── arxiv
│ │ │ ├── .cargo
│ │ │ │ └── config.toml
│ │ │ ├── .gitignore
│ │ │ ├── Cargo.toml
│ │ │ ├── Dockerfile
│ │ │ ├── README.md
│ │ │ └── src
│ │ │ ├── lib.rs
│ │ │ └── pdk.rs
│ │ ├── context7
│ │ │ ├── .cargo
│ │ │ │ └── config.toml
│ │ │ ├── .gitignore
│ │ │ ├── Cargo.toml
│ │ │ ├── Dockerfile
│ │ │ ├── README.md
│ │ │ └── src
│ │ │ ├── lib.rs
│ │ │ └── pdk.rs
│ │ ├── crates-io
│ │ │ ├── .cargo
│ │ │ │ └── config.toml
│ │ │ ├── .gitignore
│ │ │ ├── Cargo.toml
│ │ │ ├── Dockerfile
│ │ │ ├── README.md
│ │ │ └── src
│ │ │ ├── lib.rs
│ │ │ └── pdk.rs
│ │ ├── crypto-price
│ │ │ ├── Dockerfile
│ │ │ ├── go.mod
│ │ │ ├── go.sum
│ │ │ ├── main.go
│ │ │ ├── pdk.gen.go
│ │ │ └── README.md
│ │ ├── eval-py
│ │ │ ├── .cargo
│ │ │ │ └── config.toml
│ │ │ ├── .gitignore
│ │ │ ├── Cargo.toml
│ │ │ ├── Dockerfile
│ │ │ ├── README.md
│ │ │ └── src
│ │ │ ├── lib.rs
│ │ │ └── pdk.rs
│ │ ├── fetch
│ │ │ ├── .cargo
│ │ │ │ └── config.toml
│ │ │ ├── .gitignore
│ │ │ ├── Cargo.toml
│ │ │ ├── Dockerfile
│ │ │ ├── README.md
│ │ │ └── src
│ │ │ ├── lib.rs
│ │ │ └── pdk.rs
│ │ ├── fs
│ │ │ ├── .cargo
│ │ │ │ └── config.toml
│ │ │ ├── .gitignore
│ │ │ ├── Cargo.toml
│ │ │ ├── Dockerfile
│ │ │ ├── README.md
│ │ │ └── src
│ │ │ ├── lib.rs
│ │ │ └── pdk.rs
│ │ ├── github
│ │ │ ├── .gitignore
│ │ │ ├── branches.go
│ │ │ ├── Dockerfile
│ │ │ ├── files.go
│ │ │ ├── gists.go
│ │ │ ├── go.mod
│ │ │ ├── go.sum
│ │ │ ├── issues.go
│ │ │ ├── main.go
│ │ │ ├── pdk.gen.go
│ │ │ ├── README.md
│ │ │ └── repo.go
│ │ ├── gitlab
│ │ │ ├── .cargo
│ │ │ │ └── config.toml
│ │ │ ├── .gitignore
│ │ │ ├── Cargo.toml
│ │ │ ├── Dockerfile
│ │ │ ├── README.md
│ │ │ └── src
│ │ │ ├── lib.rs
│ │ │ └── pdk.rs
│ │ ├── gomodule
│ │ │ ├── .cargo
│ │ │ │ └── config.toml
│ │ │ ├── .gitignore
│ │ │ ├── Cargo.toml
│ │ │ ├── Dockerfile
│ │ │ ├── README.md
│ │ │ └── src
│ │ │ ├── lib.rs
│ │ │ └── pdk.rs
│ │ ├── hash
│ │ │ ├── .gitignore
│ │ │ ├── Cargo.lock
│ │ │ ├── Cargo.toml
│ │ │ ├── Dockerfile
│ │ │ ├── README.md
│ │ │ └── src
│ │ │ ├── lib.rs
│ │ │ └── pdk.rs
│ │ ├── maven
│ │ │ ├── .cargo
│ │ │ │ └── config.toml
│ │ │ ├── .gitignore
│ │ │ ├── Cargo.toml
│ │ │ ├── Dockerfile
│ │ │ ├── README.md
│ │ │ └── src
│ │ │ ├── lib.rs
│ │ │ └── pdk.rs
│ │ ├── meme-generator
│ │ │ ├── .cargo
│ │ │ │ └── config.toml
│ │ │ ├── .gitignore
│ │ │ ├── Cargo.toml
│ │ │ ├── Dockerfile
│ │ │ ├── generate_embedded.py
│ │ │ ├── README.md
│ │ │ ├── src
│ │ │ │ ├── embedded.rs
│ │ │ │ ├── lib.rs
│ │ │ │ └── pdk.rs
│ │ │ └── templates.json
│ │ ├── memory
│ │ │ ├── .cargo
│ │ │ │ └── config.toml
│ │ │ ├── .gitignore
│ │ │ ├── Cargo.toml
│ │ │ ├── Dockerfile
│ │ │ ├── README.md
│ │ │ └── src
│ │ │ ├── lib.rs
│ │ │ └── pdk.rs
│ │ ├── myip
│ │ │ ├── .gitignore
│ │ │ ├── Cargo.lock
│ │ │ ├── Cargo.toml
│ │ │ ├── Dockerfile
│ │ │ ├── README.md
│ │ │ └── src
│ │ │ ├── lib.rs
│ │ │ └── pdk.rs
│ │ ├── qdrant
│ │ │ ├── .cargo
│ │ │ │ └── config.toml
│ │ │ ├── .gitignore
│ │ │ ├── Cargo.toml
│ │ │ ├── Dockerfile
│ │ │ ├── README.md
│ │ │ └── src
│ │ │ ├── lib.rs
│ │ │ ├── pdk.rs
│ │ │ └── qdrant_client.rs
│ │ ├── qr-code
│ │ │ ├── .gitignore
│ │ │ ├── Cargo.lock
│ │ │ ├── Cargo.toml
│ │ │ ├── Dockerfile
│ │ │ ├── README.md
│ │ │ └── src
│ │ │ ├── lib.rs
│ │ │ └── pdk.rs
│ │ ├── serper
│ │ │ ├── .cargo
│ │ │ │ └── config.toml
│ │ │ ├── .gitignore
│ │ │ ├── Cargo.toml
│ │ │ ├── Dockerfile
│ │ │ ├── README.md
│ │ │ └── src
│ │ │ ├── lib.rs
│ │ │ └── pdk.rs
│ │ ├── sqlite
│ │ │ ├── .cargo
│ │ │ │ └── config.toml
│ │ │ ├── .gitignore
│ │ │ ├── Cargo.toml
│ │ │ ├── Dockerfile
│ │ │ ├── README.md
│ │ │ └── src
│ │ │ ├── lib.rs
│ │ │ └── pdk.rs
│ │ ├── think
│ │ │ ├── .cargo
│ │ │ │ └── config.toml
│ │ │ ├── .gitignore
│ │ │ ├── Cargo.toml
│ │ │ ├── Dockerfile
│ │ │ ├── README.md
│ │ │ └── src
│ │ │ ├── lib.rs
│ │ │ └── pdk.rs
│ │ ├── time
│ │ │ ├── .cargo
│ │ │ │ └── config.toml
│ │ │ ├── .gitignore
│ │ │ ├── Cargo.toml
│ │ │ ├── Dockerfile
│ │ │ ├── README.md
│ │ │ ├── src
│ │ │ │ ├── lib.rs
│ │ │ │ └── pdk.rs
│ │ │ └── time.wasm
│ │ └── tool-list-changed
│ │ ├── .gitignore
│ │ ├── Cargo.toml
│ │ ├── Dockerfile
│ │ ├── README.md
│ │ ├── src
│ │ │ ├── lib.rs
│ │ │ └── pdk.rs
│ │ └── tool_list_changed.wasm
│ └── v2
│ └── rstime
│ ├── .cargo
│ │ └── config.toml
│ ├── .gitignore
│ ├── Cargo.toml
│ ├── Dockerfile
│ ├── README.md
│ ├── rstime.wasm
│ └── src
│ ├── lib.rs
│ └── pdk
│ ├── exports.rs
│ ├── imports.rs
│ ├── mod.rs
│ └── types.rs
├── iac
│ ├── .terraform.lock.hcl
│ ├── main.tf
│ ├── outputs.tf
│ └── variables.tf
├── justfile
├── LICENSE
├── README.md
├── RUNTIME_CONFIG.md
├── rust-toolchain.toml
├── server.json
├── SKIP_TOOLS_GUIDE.md
├── src
│ ├── cli.rs
│ ├── config.rs
│ ├── https_auth.rs
│ ├── logging.rs
│ ├── main.rs
│ ├── naming.rs
│ ├── plugin.rs
│ ├── service.rs
│ └── wasm
│ ├── http.rs
│ ├── mod.rs
│ ├── oci.rs
│ └── s3.rs
├── templates
│ └── plugins
│ ├── go
│ │ ├── .gitignore
│ │ ├── Dockerfile
│ │ ├── exports.go
│ │ ├── go.mod
│ │ ├── go.sum
│ │ ├── imports.go
│ │ ├── main.go
│ │ ├── README.md
│ │ └── types.go
│ ├── README.md
│ └── rust
│ ├── .cargo
│ │ └── config.toml
│ ├── .gitignore
│ ├── Cargo.toml
│ ├── Dockerfile
│ ├── README.md
│ └── src
│ ├── lib.rs
│ └── pdk
│ ├── exports.rs
│ ├── imports.rs
│ ├── mod.rs
│ └── types.rs
├── tests
│ └── fixtures
│ ├── config_with_auths.json
│ ├── config_with_auths.yaml
│ ├── documentation_example.json
│ ├── documentation_example.yaml
│ ├── invalid_auth_config.yaml
│ ├── invalid_plugin_name.yaml
│ ├── invalid_structure.yaml
│ ├── invalid_url.yaml
│ ├── keyring_auth_config.yaml
│ ├── skip_tools_examples.yaml
│ ├── unsupported_config.txt
│ ├── valid_config.json
│ └── valid_config.yaml
└── xtp-plugin-schema.json
```
# Files
--------------------------------------------------------------------------------
/examples/plugins/v1/meme-generator/templates.json:
--------------------------------------------------------------------------------
```json
1 | [
2 | {
3 | "id": "aag",
4 | "name": "Ancient Aliens Guy",
5 | "lines": 2,
6 | "overlays": 0,
7 | "styles": [],
8 | "blank": "https://api.memegen.link/images/aag.jpg",
9 | "example": {
10 | "text": [
11 | "",
12 | "aliens"
13 | ],
14 | "url": "https://api.memegen.link/images/aag/_/aliens.jpg"
15 | },
16 | "source": "http://knowyourmeme.com/memes/ancient-aliens",
17 | "keywords": [
18 | "History Channel"
19 | ],
20 | "_self": "https://api.memegen.link/templates/aag"
21 | },
22 | {
23 | "id": "ackbar",
24 | "name": "It's A Trap!",
25 | "lines": 2,
26 | "overlays": 0,
27 | "styles": [],
28 | "blank": "https://api.memegen.link/images/ackbar.jpg",
29 | "example": {
30 | "text": [
31 | "",
32 | "it's a trap!"
33 | ],
34 | "url": "https://api.memegen.link/images/ackbar/_/it's_a_trap!.jpg"
35 | },
36 | "source": "http://knowyourmeme.com/memes/its-a-trap",
37 | "keywords": [
38 | "Star Wards",
39 | "Admiral Ackbar"
40 | ],
41 | "_self": "https://api.memegen.link/templates/ackbar"
42 | },
43 | {
44 | "id": "afraid",
45 | "name": "Afraid to Ask Andy",
46 | "lines": 2,
47 | "overlays": 0,
48 | "styles": [],
49 | "blank": "https://api.memegen.link/images/afraid.jpg",
50 | "example": {
51 | "text": [
52 | "i don't know what this meme is for",
53 | "and at this point i'm too afraid to ask"
54 | ],
55 | "url": "https://api.memegen.link/images/afraid/i_don't_know_what_this_meme_is_for/and_at_this_point_i'm_too_afraid_to_ask.jpg"
56 | },
57 | "source": "http://knowyourmeme.com/memes/afraid-to-ask-andy",
58 | "keywords": [
59 | "Parks and Recreation"
60 | ],
61 | "_self": "https://api.memegen.link/templates/afraid"
62 | },
63 | {
64 | "id": "agnes",
65 | "name": "Agnes Harkness Winking",
66 | "lines": 2,
67 | "overlays": 0,
68 | "styles": [],
69 | "blank": "https://api.memegen.link/images/agnes.jpg",
70 | "example": {
71 | "text": [
72 | "",
73 | "i have read and agree to the terms and conditions"
74 | ],
75 | "url": "https://api.memegen.link/images/agnes/_/i_have_read_and_agree_to_the_terms_and_conditions.jpg"
76 | },
77 | "source": "https://knowyourmeme.com/memes/agnes-harkness-winking",
78 | "keywords": [
79 | "WandaVision"
80 | ],
81 | "_self": "https://api.memegen.link/templates/agnes"
82 | },
83 | {
84 | "id": "aint-got-time",
85 | "name": "Sweet Brown",
86 | "lines": 2,
87 | "overlays": 0,
88 | "styles": [],
89 | "blank": "https://api.memegen.link/images/aint-got-time.jpg",
90 | "example": {
91 | "text": [
92 | "memes?",
93 | "ain't nobody got time fo' that"
94 | ],
95 | "url": "https://api.memegen.link/images/aint-got-time/memes~q/ain't_nobody_got_time_fo'_that.jpg"
96 | },
97 | "source": "https://knowyourmeme.com/memes/sweet-brown-aint-nobody-got-time-for-that",
98 | "keywords": [
99 | "Ain't Nobody Got Time For That"
100 | ],
101 | "_self": "https://api.memegen.link/templates/aint-got-time"
102 | },
103 | {
104 | "id": "ams",
105 | "name": "Awkward Moment Seal",
106 | "lines": 2,
107 | "overlays": 0,
108 | "styles": [],
109 | "blank": "https://api.memegen.link/images/ams.jpg",
110 | "example": {
111 | "text": [
112 | "when you're watching a movie",
113 | "and your parents walk in at the sex scene"
114 | ],
115 | "url": "https://api.memegen.link/images/ams/when_you're_watching_a_movie/and_your_parents_walk_in_at_the_sex_scene.jpg"
116 | },
117 | "source": "https://knowyourmeme.com/memes/awkward-moment-seal",
118 | "keywords": [],
119 | "_self": "https://api.memegen.link/templates/ams"
120 | },
121 | {
122 | "id": "ants",
123 | "name": "Do You Want Ants?",
124 | "lines": 2,
125 | "overlays": 0,
126 | "styles": [],
127 | "blank": "https://api.memegen.link/images/ants.jpg",
128 | "example": {
129 | "text": [
130 | "do you want ants?",
131 | "because that's how you get ants"
132 | ],
133 | "url": "https://api.memegen.link/images/ants/do_you_want_ants~q/because_that's_how_you_get_ants.jpg"
134 | },
135 | "source": "http://knowyourmeme.com/memes/do-you-want-ants",
136 | "keywords": [
137 | "Archer"
138 | ],
139 | "_self": "https://api.memegen.link/templates/ants"
140 | },
141 | {
142 | "id": "apcr",
143 | "name": "Almost Politically Correct Redneck",
144 | "lines": 2,
145 | "overlays": 0,
146 | "styles": [],
147 | "blank": "https://api.memegen.link/images/apcr.jpg",
148 | "example": {
149 | "text": [
150 | "I supported my sister's abortion",
151 | "Still would have been cool to be a dad"
152 | ],
153 | "url": "https://api.memegen.link/images/apcr/I_supported_my_sister's_abortion/Still_would_have_been_cool_to_be_a_dad.jpg"
154 | },
155 | "source": "https://knowyourmeme.com/memes/almost-politically-correct-redneck",
156 | "keywords": [],
157 | "_self": "https://api.memegen.link/templates/apcr"
158 | },
159 | {
160 | "id": "astronaut",
161 | "name": "Always Has Been",
162 | "lines": 4,
163 | "overlays": 1,
164 | "styles": [
165 | "default"
166 | ],
167 | "blank": "https://api.memegen.link/images/astronaut.jpg",
168 | "example": {
169 | "text": [
170 | "Wait, it's round?",
171 | "Always has been",
172 | "Flat Earther",
173 | "Science"
174 | ],
175 | "url": "https://api.memegen.link/images/astronaut/Wait,_it's_round~q/Always_has_been/Flat_Earther/Science.jpg"
176 | },
177 | "source": "https://knowyourmeme.com/memes/wait-its-all-ohio-always-has-been",
178 | "keywords": [],
179 | "_self": "https://api.memegen.link/templates/astronaut"
180 | },
181 | {
182 | "id": "atis",
183 | "name": "And Then I Said",
184 | "lines": 2,
185 | "overlays": 0,
186 | "styles": [],
187 | "blank": "https://api.memegen.link/images/atis.jpg",
188 | "example": {
189 | "text": [
190 | "and then i said",
191 | "the exam will only contain what we've covered in lectures"
192 | ],
193 | "url": "https://api.memegen.link/images/atis/and_then_i_said/the_exam_will_only_contain_what_we've_covered_in_lectures.jpg"
194 | },
195 | "source": "https://knowyourmeme.com/memes/and-then-i-said",
196 | "keywords": [],
197 | "_self": "https://api.memegen.link/templates/atis"
198 | },
199 | {
200 | "id": "away",
201 | "name": "Life... Finds a Way",
202 | "lines": 2,
203 | "overlays": 0,
204 | "styles": [],
205 | "blank": "https://api.memegen.link/images/away.jpg",
206 | "example": {
207 | "text": [
208 | "life...",
209 | "finds a way"
210 | ],
211 | "url": "https://api.memegen.link/images/away/life.../finds_a_way.jpg"
212 | },
213 | "source": "https://www.youtube.com/watch?v=dMjQ3hA9mEA",
214 | "keywords": [
215 | "Jurassic Park"
216 | ],
217 | "_self": "https://api.memegen.link/templates/away"
218 | },
219 | {
220 | "id": "awesome",
221 | "name": "Socially Awesome Penguin",
222 | "lines": 2,
223 | "overlays": 0,
224 | "styles": [],
225 | "blank": "https://api.memegen.link/images/awesome.jpg",
226 | "example": {
227 | "text": [
228 | "say a word wrong",
229 | "create hilarious inside joke"
230 | ],
231 | "url": "https://api.memegen.link/images/awesome/say_a_word_wrong/create_hilarious_inside_joke.jpg"
232 | },
233 | "source": "http://knowyourmeme.com/memes/socially-awesome-penguin",
234 | "keywords": [],
235 | "_self": "https://api.memegen.link/templates/awesome"
236 | },
237 | {
238 | "id": "awesome-awkward",
239 | "name": "Socially Awesome Awkward Penguin",
240 | "lines": 2,
241 | "overlays": 0,
242 | "styles": [],
243 | "blank": "https://api.memegen.link/images/awesome-awkward.jpg",
244 | "example": {
245 | "text": [
246 | "first day at new job",
247 | "spill coffee on bossman"
248 | ],
249 | "url": "https://api.memegen.link/images/awesome-awkward/first_day_at_new_job/spill_coffee_on_bossman.jpg"
250 | },
251 | "source": "http://knowyourmeme.com/memes/socially-awkward-penguin",
252 | "keywords": [],
253 | "_self": "https://api.memegen.link/templates/awesome-awkward"
254 | },
255 | {
256 | "id": "awkward",
257 | "name": "Socially Awkward Penguin",
258 | "lines": 2,
259 | "overlays": 0,
260 | "styles": [],
261 | "blank": "https://api.memegen.link/images/awkward.jpg",
262 | "example": {
263 | "text": [
264 | "start telling joke",
265 | "forget punchline"
266 | ],
267 | "url": "https://api.memegen.link/images/awkward/start_telling_joke/forget_punchline.jpg"
268 | },
269 | "source": "http://knowyourmeme.com/memes/socially-awkward-penguin",
270 | "keywords": [],
271 | "_self": "https://api.memegen.link/templates/awkward"
272 | },
273 | {
274 | "id": "awkward-awesome",
275 | "name": "Socially Awkward Awesome Penguin",
276 | "lines": 2,
277 | "overlays": 0,
278 | "styles": [],
279 | "blank": "https://api.memegen.link/images/awkward-awesome.jpg",
280 | "example": {
281 | "text": [
282 | "trip guy on the street",
283 | "he was running with a stolen purse"
284 | ],
285 | "url": "https://api.memegen.link/images/awkward-awesome/trip_guy_on_the_street/he_was_running_with_a_stolen_purse.jpg"
286 | },
287 | "source": "http://knowyourmeme.com/memes/socially-awkward-penguin",
288 | "keywords": [],
289 | "_self": "https://api.memegen.link/templates/awkward-awesome"
290 | },
291 | {
292 | "id": "bad",
293 | "name": "You Should Feel Bad",
294 | "lines": 2,
295 | "overlays": 0,
296 | "styles": [],
297 | "blank": "https://api.memegen.link/images/bad.jpg",
298 | "example": {
299 | "text": [
300 | "your meme is bad",
301 | "and you should feel bad"
302 | ],
303 | "url": "https://api.memegen.link/images/bad/your_meme_is_bad/and_you_should_feel_bad.jpg"
304 | },
305 | "source": "http://knowyourmeme.com/memes/your-musics-bad-and-you-should-feel-bad",
306 | "keywords": [
307 | "Futurama",
308 | "Zoidberg"
309 | ],
310 | "_self": "https://api.memegen.link/templates/bad"
311 | },
312 | {
313 | "id": "badchoice",
314 | "name": "Milk Was a Bad Choice",
315 | "lines": 2,
316 | "overlays": 1,
317 | "styles": [
318 | "default"
319 | ],
320 | "blank": "https://api.memegen.link/images/badchoice.jpg",
321 | "example": {
322 | "text": [
323 | "milk",
324 | "was a bad choice"
325 | ],
326 | "url": "https://api.memegen.link/images/badchoice/milk/was_a_bad_choice.jpg"
327 | },
328 | "source": "https://www.youtube.com/watch?v=DeY0yPqibb0",
329 | "keywords": [
330 | "Anchorman"
331 | ],
332 | "_self": "https://api.memegen.link/templates/badchoice"
333 | },
334 | {
335 | "id": "balloon",
336 | "name": "Running Away Balloon",
337 | "lines": 3,
338 | "overlays": 3,
339 | "styles": [
340 | "default"
341 | ],
342 | "blank": "https://api.memegen.link/images/balloon.jpg",
343 | "example": {
344 | "text": [
345 | "Opportunities",
346 | "Opportunities",
347 | "Shyness"
348 | ],
349 | "url": "https://api.memegen.link/images/balloon/Opportunities/Opportunities/Shyness.jpg"
350 | },
351 | "source": "https://knowyourmeme.com/memes/running-away-balloon",
352 | "keywords": [
353 | "Superlmer"
354 | ],
355 | "_self": "https://api.memegen.link/templates/balloon"
356 | },
357 | {
358 | "id": "bd",
359 | "name": "Butthurt Dweller",
360 | "lines": 2,
361 | "overlays": 0,
362 | "styles": [],
363 | "blank": "https://api.memegen.link/images/bd.jpg",
364 | "example": {
365 | "text": [
366 | "can't workout",
367 | "don't want to get too buff"
368 | ],
369 | "url": "https://api.memegen.link/images/bd/can't_workout/don't_want_to_get_too_buff.jpg"
370 | },
371 | "source": "http://knowyourmeme.com/memes/butthurt-dweller-gordo-granudo",
372 | "keywords": [],
373 | "_self": "https://api.memegen.link/templates/bd"
374 | },
375 | {
376 | "id": "because",
377 | "name": "Men in Black",
378 | "lines": 2,
379 | "overlays": 0,
380 | "styles": [],
381 | "blank": "https://api.memegen.link/images/because.jpg",
382 | "example": {
383 | "text": [
384 | "Just because you see a Black man driving in a nice car... does not mean it's stolen.",
385 | "...I stole that one, but not 'cause I'm Black!"
386 | ],
387 | "url": "https://api.memegen.link/images/because/Just_because_you_see_a_Black_man_driving_in_a_nice_car..._does_not_mean_it's_stolen./...I_stole_that_one,_but_not_'cause_I'm_Black!.jpg"
388 | },
389 | "source": "https://www.youtube.com/watch?v=GNOZhAc26I8&t=76s",
390 | "keywords": [
391 | "Will Smith"
392 | ],
393 | "_self": "https://api.memegen.link/templates/because"
394 | },
395 | {
396 | "id": "bender",
397 | "name": "I'm Going to Build My Own Theme Park",
398 | "lines": 2,
399 | "overlays": 0,
400 | "styles": [],
401 | "blank": "https://api.memegen.link/images/bender.jpg",
402 | "example": {
403 | "text": [
404 | "i'm going to build my own theme park",
405 | "with blackjack and hookers"
406 | ],
407 | "url": "https://api.memegen.link/images/bender/i'm_going_to_build_my_own_theme_park/with_blackjack_and_hookers.jpg"
408 | },
409 | "source": "http://knowyourmeme.com/memes/im-going-to-build-my-own-theme-park-with-blackjack-and-hookers",
410 | "keywords": [
411 | "Futurama"
412 | ],
413 | "_self": "https://api.memegen.link/templates/bender"
414 | },
415 | {
416 | "id": "bihw",
417 | "name": "But It's Honest Work",
418 | "lines": 2,
419 | "overlays": 0,
420 | "styles": [],
421 | "blank": "https://api.memegen.link/images/bihw.jpg",
422 | "example": {
423 | "text": [
424 | "it ain't much",
425 | "but it's honest work"
426 | ],
427 | "url": "https://api.memegen.link/images/bihw/it_ain't_much/but_it's_honest_work.jpg"
428 | },
429 | "source": "https://knowyourmeme.com/memes/but-its-honest-work",
430 | "keywords": [],
431 | "_self": "https://api.memegen.link/templates/bihw"
432 | },
433 | {
434 | "id": "bilbo",
435 | "name": "Why Shouldn't I Keep It",
436 | "lines": 2,
437 | "overlays": 1,
438 | "styles": [
439 | "default"
440 | ],
441 | "blank": "https://api.memegen.link/images/bilbo.jpg",
442 | "example": {
443 | "text": [
444 | "After all... why not?",
445 | "Why shouldn't I keep it?"
446 | ],
447 | "url": "https://api.memegen.link/images/bilbo/After_all..._why_not~q/Why_shouldn't_I_keep_it~q.jpg"
448 | },
449 | "source": "https://knowyourmeme.com/memes/after-all-why-not-why-shouldnt-i-keep-it",
450 | "keywords": [
451 | "Lord of the Rings",
452 | "Bilbo Baggins"
453 | ],
454 | "_self": "https://api.memegen.link/templates/bilbo"
455 | },
456 | {
457 | "id": "biw",
458 | "name": "Baby Insanity Wolf",
459 | "lines": 2,
460 | "overlays": 0,
461 | "styles": [],
462 | "blank": "https://api.memegen.link/images/biw.jpg",
463 | "example": {
464 | "text": [
465 | "gets iced coffee",
466 | "in the winter"
467 | ],
468 | "url": "https://api.memegen.link/images/biw/gets_iced_coffee/in_the_winter.jpg"
469 | },
470 | "source": "http://knowyourmeme.com/memes/baby-insanity-wolf",
471 | "keywords": [],
472 | "_self": "https://api.memegen.link/templates/biw"
473 | },
474 | {
475 | "id": "blb",
476 | "name": "Bad Luck Brian",
477 | "lines": 2,
478 | "overlays": 0,
479 | "styles": [],
480 | "blank": "https://api.memegen.link/images/blb.jpg",
481 | "example": {
482 | "text": [
483 | "falls asleep in class",
484 | "has a wet dream"
485 | ],
486 | "url": "https://api.memegen.link/images/blb/falls_asleep_in_class/has_a_wet_dream.jpg"
487 | },
488 | "source": "http://knowyourmeme.com/memes/bad-luck-brian",
489 | "keywords": [],
490 | "_self": "https://api.memegen.link/templates/blb"
491 | },
492 | {
493 | "id": "boat",
494 | "name": "I Should Buy a Boat Cat",
495 | "lines": 2,
496 | "overlays": 0,
497 | "styles": [],
498 | "blank": "https://api.memegen.link/images/boat.jpg",
499 | "example": {
500 | "text": [
501 | "",
502 | "i should buy a boat"
503 | ],
504 | "url": "https://api.memegen.link/images/boat/_/i_should_buy_a_boat.jpg"
505 | },
506 | "source": "http://knowyourmeme.com/memes/i-should-buy-a-boat-cat",
507 | "keywords": [],
508 | "_self": "https://api.memegen.link/templates/boat"
509 | },
510 | {
511 | "id": "bongo",
512 | "name": "Bongo Cat",
513 | "lines": 2,
514 | "overlays": 2,
515 | "styles": [
516 | "animated",
517 | "default"
518 | ],
519 | "blank": "https://api.memegen.link/images/bongo.jpg",
520 | "example": {
521 | "text": [
522 | "Any sound when you're trying to sleep",
523 | "Max volume alarm when you have to wake up"
524 | ],
525 | "url": "https://api.memegen.link/images/bongo/Any_sound_when_you're_trying_to_sleep/Max_volume_alarm_when_you_have_to_wake_up.webp"
526 | },
527 | "source": "https://knowyourmeme.com/memes/bongo-cat",
528 | "keywords": [],
529 | "_self": "https://api.memegen.link/templates/bongo"
530 | },
531 | {
532 | "id": "both",
533 | "name": "Why Not Both?",
534 | "lines": 2,
535 | "overlays": 1,
536 | "styles": [
537 | "animated",
538 | "default"
539 | ],
540 | "blank": "https://api.memegen.link/images/both.jpg",
541 | "example": {
542 | "text": [
543 | "hard or soft tacos",
544 | "why not both?"
545 | ],
546 | "url": "https://api.memegen.link/images/both/hard_or_soft_tacos/why_not_both~q.webp"
547 | },
548 | "source": "http://knowyourmeme.com/memes/why-not-both-why-dont-we-have-both",
549 | "keywords": [],
550 | "_self": "https://api.memegen.link/templates/both"
551 | },
552 | {
553 | "id": "box",
554 | "name": "What's in the box!?",
555 | "lines": 2,
556 | "overlays": 1,
557 | "styles": [
558 | "animated",
559 | "default"
560 | ],
561 | "blank": "https://api.memegen.link/images/box.jpg",
562 | "example": {
563 | "text": [
564 | "",
565 | "What's in the box!?"
566 | ],
567 | "url": "https://api.memegen.link/images/box/_/What's_in_the_box!~q.webp"
568 | },
569 | "source": "https://screenrant.com/hilarious-se7en-memes/",
570 | "keywords": [
571 | "Seven"
572 | ],
573 | "_self": "https://api.memegen.link/templates/box"
574 | },
575 | {
576 | "id": "bs",
577 | "name": "This is Bull, Shark",
578 | "lines": 2,
579 | "overlays": 0,
580 | "styles": [],
581 | "blank": "https://api.memegen.link/images/bs.jpg",
582 | "example": {
583 | "text": [
584 | "what a surprise...",
585 | "you caught me again"
586 | ],
587 | "url": "https://api.memegen.link/images/bs/what_a_surprise.../you_caught_me_again.jpg"
588 | },
589 | "source": "https://www.reddit.com/r/funny/comments/3grsfs",
590 | "keywords": [],
591 | "_self": "https://api.memegen.link/templates/bs"
592 | },
593 | {
594 | "id": "bus",
595 | "name": "Two Guys on a Bus",
596 | "lines": 2,
597 | "overlays": 2,
598 | "styles": [
599 | "default"
600 | ],
601 | "blank": "https://api.memegen.link/images/bus.jpg",
602 | "example": {
603 | "text": [
604 | "Postseason",
605 | "Preseason"
606 | ],
607 | "url": "https://api.memegen.link/images/bus/Postseason/Preseason.jpg"
608 | },
609 | "source": "https://knowyourmeme.com/memes/two-guys-on-a-bus",
610 | "keywords": [
611 | "Genildo Ronchi"
612 | ],
613 | "_self": "https://api.memegen.link/templates/bus"
614 | },
615 | {
616 | "id": "buzz",
617 | "name": "X, X Everywhere",
618 | "lines": 2,
619 | "overlays": 1,
620 | "styles": [
621 | "animated",
622 | "default"
623 | ],
624 | "blank": "https://api.memegen.link/images/buzz.jpg",
625 | "example": {
626 | "text": [
627 | "memes",
628 | "memes everywhere"
629 | ],
630 | "url": "https://api.memegen.link/images/buzz/memes/memes_everywhere.webp"
631 | },
632 | "source": "https://imgflip.com/memetemplate/X-Everywhere",
633 | "keywords": [],
634 | "_self": "https://api.memegen.link/templates/buzz"
635 | },
636 | {
637 | "id": "cake",
638 | "name": "Office Space Milton",
639 | "lines": 2,
640 | "overlays": 1,
641 | "styles": [
642 | "animated",
643 | "default"
644 | ],
645 | "blank": "https://api.memegen.link/images/cake.jpg",
646 | "example": {
647 | "text": [
648 | "",
649 | "I was told there would be cake"
650 | ],
651 | "url": "https://api.memegen.link/images/cake/_/I_was_told_there_would_be_cake.webp"
652 | },
653 | "source": "https://www.youtube.com/watch?v=mDOKGa92NRo",
654 | "keywords": [],
655 | "_self": "https://api.memegen.link/templates/cake"
656 | },
657 | {
658 | "id": "captain",
659 | "name": "I am the Captain Now",
660 | "lines": 2,
661 | "overlays": 1,
662 | "styles": [
663 | "default"
664 | ],
665 | "blank": "https://api.memegen.link/images/captain.jpg",
666 | "example": {
667 | "text": [
668 | "look at me",
669 | "i am the captain now"
670 | ],
671 | "url": "https://api.memegen.link/images/captain/look_at_me/i_am_the_captain_now.jpg"
672 | },
673 | "source": "https://www.youtube.com/watch?v=dvA-mimf2yg",
674 | "keywords": [],
675 | "_self": "https://api.memegen.link/templates/captain"
676 | },
677 | {
678 | "id": "captain-america",
679 | "name": "Captain America Elevator Fight Dad Joke",
680 | "lines": 3,
681 | "overlays": 0,
682 | "styles": [],
683 | "blank": "https://api.memegen.link/images/captain-america.jpg",
684 | "example": {
685 | "text": [
686 | "Have you ever eaten a clock?",
687 | "No, why?",
688 | "It's time consuming."
689 | ],
690 | "url": "https://api.memegen.link/images/captain-america/Have_you_ever_eaten_a_clock~q/No,_why~q/It's_time_consuming..jpg"
691 | },
692 | "source": "https://knowyourmeme.com/memes/captain-america-elevator-fight-dad-joke",
693 | "keywords": [],
694 | "_self": "https://api.memegen.link/templates/captain-america"
695 | },
696 | {
697 | "id": "cb",
698 | "name": "Confession Bear",
699 | "lines": 2,
700 | "overlays": 0,
701 | "styles": [],
702 | "blank": "https://api.memegen.link/images/cb.jpg",
703 | "example": {
704 | "text": [
705 | "i stole",
706 | "the pic-i-nic basket"
707 | ],
708 | "url": "https://api.memegen.link/images/cb/i_stole/the_pic--i--nic_basket.jpg"
709 | },
710 | "source": "http://knowyourmeme.com/memes/confession-bear",
711 | "keywords": [],
712 | "_self": "https://api.memegen.link/templates/cb"
713 | },
714 | {
715 | "id": "cbb",
716 | "name": "Communist Bugs Bunny",
717 | "lines": 2,
718 | "overlays": 1,
719 | "styles": [
720 | "default"
721 | ],
722 | "blank": "https://api.memegen.link/images/cbb.jpg",
723 | "example": {
724 | "text": [
725 | "",
726 | "our memes!"
727 | ],
728 | "url": "https://api.memegen.link/images/cbb/_/our_memes!.jpg"
729 | },
730 | "source": "https://knowyourmeme.com/memes/communist-bugs-bunny",
731 | "keywords": [],
732 | "_self": "https://api.memegen.link/templates/cbb"
733 | },
734 | {
735 | "id": "cbg",
736 | "name": "Comic Book Guy",
737 | "lines": 2,
738 | "overlays": 1,
739 | "styles": [
740 | "default"
741 | ],
742 | "blank": "https://api.memegen.link/images/cbg.jpg",
743 | "example": {
744 | "text": [
745 | "",
746 | "worst thing ever!"
747 | ],
748 | "url": "https://api.memegen.link/images/cbg/_/worst_thing_ever!.jpg"
749 | },
750 | "source": "http://simpsons.wikia.com/wiki/Jeffrey_Albertson",
751 | "keywords": [],
752 | "_self": "https://api.memegen.link/templates/cbg"
753 | },
754 | {
755 | "id": "center",
756 | "name": "What is this, a Center for Ants?!",
757 | "lines": 2,
758 | "overlays": 1,
759 | "styles": [
760 | "default"
761 | ],
762 | "blank": "https://api.memegen.link/images/center.jpg",
763 | "example": {
764 | "text": [
765 | "what is this",
766 | "a center for ants"
767 | ],
768 | "url": "https://api.memegen.link/images/center/what_is_this/a_center_for_ants.jpg"
769 | },
770 | "source": "http://knowyourmeme.com/memes/what-is-this-a-center-for-ants",
771 | "keywords": [],
772 | "_self": "https://api.memegen.link/templates/center"
773 | },
774 | {
775 | "id": "ch",
776 | "name": "Captain Hindsight",
777 | "lines": 2,
778 | "overlays": 0,
779 | "styles": [],
780 | "blank": "https://api.memegen.link/images/ch.jpg",
781 | "example": {
782 | "text": [
783 | "if you wanted to avoid the friend zone",
784 | "you should have made your intentions known from the start"
785 | ],
786 | "url": "https://api.memegen.link/images/ch/if_you_wanted_to_avoid_the_friend_zone/you_should_have_made_your_intentions_known_from_the_start.jpg"
787 | },
788 | "source": "http://knowyourmeme.com/memes/captain-hindsight",
789 | "keywords": [],
790 | "_self": "https://api.memegen.link/templates/ch"
791 | },
792 | {
793 | "id": "chair",
794 | "name": "American Chopper Argument",
795 | "lines": 6,
796 | "overlays": 0,
797 | "styles": [],
798 | "blank": "https://api.memegen.link/images/chair.jpg",
799 | "example": {
800 | "text": [
801 | "Let's expand safety nets",
802 | "Socialism never works!",
803 | "Scandinavia is socialist and they're doing great!",
804 | "They're not socialist. They're capitalist with strong welfare policies!",
805 | "Then let's adopt those!",
806 | "No that's socialism!!"
807 | ],
808 | "url": "https://api.memegen.link/images/chair/Let's_expand_safety_nets/Socialism_never_works!/Scandinavia_is_socialist_and_they're_doing_great!/They're_not_socialist._They're_capitalist_with_strong_welfare_policies!/Then_let's_adopt_those!/No_that's_socialism!!.jpg"
809 | },
810 | "source": "https://knowyourmeme.com/memes/american-chopper-argument",
811 | "keywords": [],
812 | "_self": "https://api.memegen.link/templates/chair"
813 | },
814 | {
815 | "id": "cheems",
816 | "name": "Cheems",
817 | "lines": 2,
818 | "overlays": 0,
819 | "styles": [],
820 | "blank": "https://api.memegen.link/images/cheems.jpg",
821 | "example": {
822 | "text": [
823 | "it's a good time to sleep",
824 | "nothing will go wrong after this"
825 | ],
826 | "url": "https://api.memegen.link/images/cheems/it's_a_good_time_to_sleep/nothing_will_go_wrong_after_this.jpg"
827 | },
828 | "source": "https://knowyourmeme.com/memes/cheems",
829 | "keywords": [],
830 | "_self": "https://api.memegen.link/templates/cheems"
831 | },
832 | {
833 | "id": "chosen",
834 | "name": "You Were the Chosen One!",
835 | "lines": 2,
836 | "overlays": 0,
837 | "styles": [],
838 | "blank": "https://api.memegen.link/images/chosen.jpg",
839 | "example": {
840 | "text": [
841 | "you were the chosen one!"
842 | ],
843 | "url": "https://api.memegen.link/images/chosen/you_were_the_chosen_one!.jpg"
844 | },
845 | "source": "http://knowyourmeme.com/memes/you-were-the-chosen-one",
846 | "keywords": [],
847 | "_self": "https://api.memegen.link/templates/chosen"
848 | },
849 | {
850 | "id": "cmm",
851 | "name": "Change My Mind",
852 | "lines": 1,
853 | "overlays": 0,
854 | "styles": [],
855 | "blank": "https://api.memegen.link/images/cmm.jpg",
856 | "example": {
857 | "text": [
858 | "pineapples don't belong on pizza"
859 | ],
860 | "url": "https://api.memegen.link/images/cmm/pineapples_don't_belong_on_pizza.jpg"
861 | },
862 | "source": "https://knowyourmeme.com/memes/steven-crowders-change-my-mind-campus-sign",
863 | "keywords": [],
864 | "_self": "https://api.memegen.link/templates/cmm"
865 | },
866 | {
867 | "id": "country",
868 | "name": "What a Country",
869 | "lines": 2,
870 | "overlays": 1,
871 | "styles": [
872 | "default"
873 | ],
874 | "blank": "https://api.memegen.link/images/country.jpg",
875 | "example": {
876 | "text": [
877 | "Inflammable means flammable?",
878 | "What a country!"
879 | ],
880 | "url": "https://api.memegen.link/images/country/Inflammable_means_flammable~q/What_a_country!.jpg"
881 | },
882 | "source": "https://www.youtube.com/watch?v=Q8mD2hsxrhQ",
883 | "keywords": [
884 | "The Simpsons",
885 | "Dr. Nick"
886 | ],
887 | "_self": "https://api.memegen.link/templates/country"
888 | },
889 | {
890 | "id": "crazypills",
891 | "name": "I Feel Like I'm Taking Crazy Pills",
892 | "lines": 2,
893 | "overlays": 0,
894 | "styles": [],
895 | "blank": "https://api.memegen.link/images/crazypills.jpg",
896 | "example": {
897 | "text": [
898 | "",
899 | "i feel like i'm taking crazy pills"
900 | ],
901 | "url": "https://api.memegen.link/images/crazypills/_/i_feel_like_i'm_taking_crazy_pills.jpg"
902 | },
903 | "source": "http://knowyourmeme.com/memes/i-feel-like-im-taking-crazy-pills",
904 | "keywords": [],
905 | "_self": "https://api.memegen.link/templates/crazypills"
906 | },
907 | {
908 | "id": "crow",
909 | "name": "Get Better Material",
910 | "lines": 2,
911 | "overlays": 0,
912 | "styles": [],
913 | "blank": "https://api.memegen.link/images/crow.jpg",
914 | "example": {
915 | "text": [
916 | "Caw Caw Caw",
917 | "Caw Caw Caw Caw Caw Caw"
918 | ],
919 | "url": "https://api.memegen.link/images/crow/Caw_Caw_Caw/Caw_Caw_Caw_Caw_Caw_Caw.jpg"
920 | },
921 | "source": "https://knowyourmeme.com/memes/get-better-material",
922 | "keywords": [],
923 | "_self": "https://api.memegen.link/templates/crow"
924 | },
925 | {
926 | "id": "cryingfloor",
927 | "name": "Crying on Floor",
928 | "lines": 2,
929 | "overlays": 0,
930 | "styles": [],
931 | "blank": "https://api.memegen.link/images/cryingfloor.jpg",
932 | "example": {
933 | "text": [
934 | "it's okay",
935 | "lets just reschedule drinking"
936 | ],
937 | "url": "https://api.memegen.link/images/cryingfloor/it's_okay/lets_just_reschedule_drinking.jpg"
938 | },
939 | "source": "http://knowyourmeme.com/photos/1125083-hold-the-door",
940 | "keywords": [],
941 | "_self": "https://api.memegen.link/templates/cryingfloor"
942 | },
943 | {
944 | "id": "db",
945 | "name": "Distracted Boyfriend",
946 | "lines": 3,
947 | "overlays": 0,
948 | "styles": [],
949 | "blank": "https://api.memegen.link/images/db.jpg",
950 | "example": {
951 | "text": [
952 | "Socialism",
953 | "The Youth",
954 | "Capitalism"
955 | ],
956 | "url": "https://api.memegen.link/images/db/Socialism/The_Youth/Capitalism.jpg"
957 | },
958 | "source": "https://knowyourmeme.com/memes/distracted-boyfriend",
959 | "keywords": [],
960 | "_self": "https://api.memegen.link/templates/db"
961 | },
962 | {
963 | "id": "dbg",
964 | "name": "Expectation vs. Reality",
965 | "lines": 2,
966 | "overlays": 2,
967 | "styles": [
968 | "default"
969 | ],
970 | "blank": "https://api.memegen.link/images/dbg.jpg",
971 | "example": {
972 | "text": [
973 | "Clicking the 'X' on a mobile ad",
974 | "The 'X' is part of the ad"
975 | ],
976 | "url": "https://api.memegen.link/images/dbg/Clicking_the_'X'_on_a_mobile_ad/The_'X'_is_part_of_the_ad.jpg"
977 | },
978 | "source": "https://knowyourmeme.com/memes/disappointed-black-guy",
979 | "keywords": [
980 | "Disappointed Black Guy"
981 | ],
982 | "_self": "https://api.memegen.link/templates/dbg"
983 | },
984 | {
985 | "id": "dg",
986 | "name": "Distracted Girlfriend",
987 | "lines": 3,
988 | "overlays": 0,
989 | "styles": [],
990 | "blank": "https://api.memegen.link/images/dg.jpg",
991 | "example": {
992 | "text": [
993 | "Socialism",
994 | "The Youth",
995 | "Capitalism"
996 | ],
997 | "url": "https://api.memegen.link/images/dg/Socialism/The_Youth/Capitalism.jpg"
998 | },
999 | "source": "https://knowyourmeme.com/memes/distracted-boyfriend",
1000 | "keywords": [],
1001 | "_self": "https://api.memegen.link/templates/dg"
1002 | },
1003 | {
1004 | "id": "disastergirl",
1005 | "name": "Disaster Girl",
1006 | "lines": 2,
1007 | "overlays": 0,
1008 | "styles": [],
1009 | "blank": "https://api.memegen.link/images/disastergirl.jpg",
1010 | "example": {
1011 | "text": [
1012 | "",
1013 | "just as I planned..."
1014 | ],
1015 | "url": "https://api.memegen.link/images/disastergirl/_/just_as_I_planned....jpg"
1016 | },
1017 | "source": "http://knowyourmeme.com/memes/disaster-girl",
1018 | "keywords": [],
1019 | "_self": "https://api.memegen.link/templates/disastergirl"
1020 | },
1021 | {
1022 | "id": "dodgson",
1023 | "name": "See? Nobody Cares",
1024 | "lines": 2,
1025 | "overlays": 1,
1026 | "styles": [
1027 | "animated",
1028 | "default"
1029 | ],
1030 | "blank": "https://api.memegen.link/images/dodgson.jpg",
1031 | "example": {
1032 | "text": [
1033 | "we've got dodgson here!",
1034 | "see? nobody cares"
1035 | ],
1036 | "url": "https://api.memegen.link/images/dodgson/we've_got_dodgson_here!/see~q_nobody_cares.webp"
1037 | },
1038 | "source": "http://knowyourmeme.com/memes/see-nobody-cares",
1039 | "keywords": [
1040 | "Jurassic Park"
1041 | ],
1042 | "_self": "https://api.memegen.link/templates/dodgson"
1043 | },
1044 | {
1045 | "id": "doge",
1046 | "name": "Doge",
1047 | "lines": 2,
1048 | "overlays": 1,
1049 | "styles": [
1050 | "bark",
1051 | "bite",
1052 | "default",
1053 | "full",
1054 | "growl",
1055 | "pet",
1056 | "roll"
1057 | ],
1058 | "blank": "https://api.memegen.link/images/doge.jpg",
1059 | "example": {
1060 | "text": [
1061 | "such meme",
1062 | "very skill"
1063 | ],
1064 | "url": "https://api.memegen.link/images/doge/such_meme/very_skill.jpg"
1065 | },
1066 | "source": "http://knowyourmeme.com/memes/doge",
1067 | "keywords": [],
1068 | "_self": "https://api.memegen.link/templates/doge"
1069 | },
1070 | {
1071 | "id": "dragon",
1072 | "name": "What Color Do You Want Your Dragon",
1073 | "lines": 1,
1074 | "overlays": 0,
1075 | "styles": [],
1076 | "blank": "https://api.memegen.link/images/dragon.jpg",
1077 | "example": {
1078 | "text": [
1079 | "OK I want a boyfriend"
1080 | ],
1081 | "url": "https://api.memegen.link/images/dragon/OK_I_want_a_boyfriend.jpg"
1082 | },
1083 | "source": "https://knowyourmeme.com/photos/1052192-tumblr",
1084 | "keywords": [
1085 | "wish"
1086 | ],
1087 | "_self": "https://api.memegen.link/templates/dragon"
1088 | },
1089 | {
1090 | "id": "drake",
1091 | "name": "Drake Hotline Bling",
1092 | "lines": 2,
1093 | "overlays": 0,
1094 | "styles": ["upper"],
1095 | "blank": "https://imgflip.com/s/meme/Drake-Hotline-Bling.jpg",
1096 | "example": {
1097 | "text": [
1098 | "Using regular functions",
1099 | "Using extism plugins"
1100 | ],
1101 | "url": "https://i.imgflip.com/example.jpg"
1102 | },
1103 | "keywords": ["drake", "hotline bling", "no yes"],
1104 | "_self": "https://api.imgflip.com/meme/181913649"
1105 | },
1106 | {
1107 | "id": "drowning",
1108 | "name": "Drowning High Five",
1109 | "lines": 3,
1110 | "overlays": 1,
1111 | "styles": [
1112 | "default"
1113 | ],
1114 | "blank": "https://api.memegen.link/images/drowning.jpg",
1115 | "example": {
1116 | "text": [
1117 | "Me Asking for Help",
1118 | "Online Commenter",
1119 | "I'm having that problem too."
1120 | ],
1121 | "url": "https://api.memegen.link/images/drowning/Me_Asking_for_Help/Online_Commenter/I'm_having_that_problem_too..jpg"
1122 | },
1123 | "source": "https://knowyourmeme.com/memes/drowning-high-five",
1124 | "keywords": [],
1125 | "_self": "https://api.memegen.link/templates/drowning"
1126 | },
1127 | {
1128 | "id": "drunk",
1129 | "name": "Drunk Baby",
1130 | "lines": 2,
1131 | "overlays": 0,
1132 | "styles": [],
1133 | "blank": "https://api.memegen.link/images/drunk.jpg",
1134 | "example": {
1135 | "text": [
1136 | "Walk in a straight line?",
1137 | "Officer, I can barely stand"
1138 | ],
1139 | "url": "https://api.memegen.link/images/drunk/Walk_in_a_straight_line~q/Officer,_I_can_barely_stand.jpg"
1140 | },
1141 | "source": "https://knowyourmeme.com/memes/drunk-baby--2",
1142 | "keywords": [],
1143 | "_self": "https://api.memegen.link/templates/drunk"
1144 | },
1145 | {
1146 | "id": "ds",
1147 | "name": "Daily Struggle",
1148 | "lines": 3,
1149 | "overlays": 1,
1150 | "styles": [
1151 | "default",
1152 | "maga"
1153 | ],
1154 | "blank": "https://api.memegen.link/images/ds.jpg",
1155 | "example": {
1156 | "text": [
1157 | "The dress is black and blue.",
1158 | "The dress is gold and white."
1159 | ],
1160 | "url": "https://api.memegen.link/images/ds/The_dress_is_black_and_blue./The_dress_is_gold_and_white..jpg"
1161 | },
1162 | "source": "https://knowyourmeme.com/memes/daily-struggle",
1163 | "keywords": [],
1164 | "_self": "https://api.memegen.link/templates/ds"
1165 | },
1166 | {
1167 | "id": "dsm",
1168 | "name": "Dating Site Murderer",
1169 | "lines": 2,
1170 | "overlays": 0,
1171 | "styles": [],
1172 | "blank": "https://api.memegen.link/images/dsm.jpg",
1173 | "example": {
1174 | "text": [
1175 | "they will never find your body",
1176 | "as attractive as i do"
1177 | ],
1178 | "url": "https://api.memegen.link/images/dsm/they_will_never_find_your_body/as_attractive_as_i_do.jpg"
1179 | },
1180 | "source": "http://knowyourmeme.com/memes/dating-site-murderer",
1181 | "keywords": [],
1182 | "_self": "https://api.memegen.link/templates/dsm"
1183 | },
1184 | {
1185 | "id": "dwight",
1186 | "name": "Schrute Facts",
1187 | "lines": 2,
1188 | "overlays": 0,
1189 | "styles": [],
1190 | "blank": "https://api.memegen.link/images/dwight.jpg",
1191 | "example": {
1192 | "text": [
1193 | "love is all you need?",
1194 | "false. you need water and rations."
1195 | ],
1196 | "url": "https://api.memegen.link/images/dwight/love_is_all_you_need~q/false._you_need_water_and_rations..jpg"
1197 | },
1198 | "source": "http://knowyourmeme.com/memes/schrute-facts",
1199 | "keywords": [
1200 | "The Office"
1201 | ],
1202 | "_self": "https://api.memegen.link/templates/dwight"
1203 | },
1204 | {
1205 | "id": "elf",
1206 | "name": "You Sit on a Throne of Lies",
1207 | "lines": 2,
1208 | "overlays": 0,
1209 | "styles": [],
1210 | "blank": "https://api.memegen.link/images/elf.jpg",
1211 | "example": {
1212 | "text": [
1213 | "",
1214 | "you sit on a throne of lies"
1215 | ],
1216 | "url": "https://api.memegen.link/images/elf/_/you_sit_on_a_throne_of_lies.jpg"
1217 | },
1218 | "source": "http://knowyourmeme.com/memes/you-sit-on-a-throne-of-lies",
1219 | "keywords": [
1220 | "Elf"
1221 | ],
1222 | "_self": "https://api.memegen.link/templates/elf"
1223 | },
1224 | {
1225 | "id": "elmo",
1226 | "name": "Elmo Choosing Cocaine",
1227 | "lines": 5,
1228 | "overlays": 4,
1229 | "styles": [
1230 | "default"
1231 | ],
1232 | "blank": "https://api.memegen.link/images/elmo.jpg",
1233 | "example": {
1234 | "text": [
1235 | "Historical Accuracy",
1236 | "History Channel",
1237 | "Aliens",
1238 | "Historical Accuracy"
1239 | ],
1240 | "url": "https://api.memegen.link/images/elmo/Historical_Accuracy/History_Channel/Aliens/Historical_Accuracy.jpg"
1241 | },
1242 | "source": "https://knowyourmeme.com/memes/elmo-choosing-cocaine",
1243 | "keywords": [],
1244 | "_self": "https://api.memegen.link/templates/elmo"
1245 | },
1246 | {
1247 | "id": "ermg",
1248 | "name": "Ermahgerd",
1249 | "lines": 2,
1250 | "overlays": 1,
1251 | "styles": [
1252 | "default"
1253 | ],
1254 | "blank": "https://api.memegen.link/images/ermg.jpg",
1255 | "example": {
1256 | "text": [
1257 | "ermahgerd",
1258 | "memes"
1259 | ],
1260 | "url": "https://api.memegen.link/images/ermg/ermahgerd/memes.jpg"
1261 | },
1262 | "source": "http://knowyourmeme.com/memes/ermahgerd",
1263 | "keywords": [],
1264 | "_self": "https://api.memegen.link/templates/ermg"
1265 | },
1266 | {
1267 | "id": "exit",
1268 | "name": "Left Exit 12 Off Ramp",
1269 | "lines": 3,
1270 | "overlays": 3,
1271 | "styles": [
1272 | "default"
1273 | ],
1274 | "blank": "https://api.memegen.link/images/exit.jpg",
1275 | "example": {
1276 | "text": [
1277 | "The Pins",
1278 | "The Gutter",
1279 | "Bowling Ball"
1280 | ],
1281 | "url": "https://api.memegen.link/images/exit/The_Pins/The_Gutter/Bowling_Ball.jpg"
1282 | },
1283 | "source": "https://knowyourmeme.com/memes/left-exit-12-off-ramp",
1284 | "keywords": [],
1285 | "_self": "https://api.memegen.link/templates/exit"
1286 | },
1287 | {
1288 | "id": "fa",
1289 | "name": "Forever Alone",
1290 | "lines": 2,
1291 | "overlays": 0,
1292 | "styles": [],
1293 | "blank": "https://api.memegen.link/images/fa.jpg",
1294 | "example": {
1295 | "text": [
1296 | "forever",
1297 | "alone"
1298 | ],
1299 | "url": "https://api.memegen.link/images/fa/forever/alone.jpg"
1300 | },
1301 | "source": "http://knowyourmeme.com/memes/forever-alone",
1302 | "keywords": [],
1303 | "_self": "https://api.memegen.link/templates/fa"
1304 | },
1305 | {
1306 | "id": "facepalm",
1307 | "name": "Facepalm",
1308 | "lines": 2,
1309 | "overlays": 1,
1310 | "styles": [
1311 | "config.61caca6063a240cf99d74abda35b148557f37998",
1312 | "default",
1313 | "default.top"
1314 | ],
1315 | "blank": "https://api.memegen.link/images/facepalm.jpg",
1316 | "example": {
1317 | "text": [
1318 | "",
1319 | "I can't even"
1320 | ],
1321 | "url": "https://api.memegen.link/images/facepalm/_/I_can't_even.jpg"
1322 | },
1323 | "source": "http://knowyourmeme.com/memes/facepalm",
1324 | "keywords": [],
1325 | "_self": "https://api.memegen.link/templates/facepalm"
1326 | },
1327 | {
1328 | "id": "fbf",
1329 | "name": "Foul Bachelor Frog",
1330 | "lines": 2,
1331 | "overlays": 0,
1332 | "styles": [],
1333 | "blank": "https://api.memegen.link/images/fbf.jpg",
1334 | "example": {
1335 | "text": [
1336 | "paper towel",
1337 | "the plate that cleans up after itself"
1338 | ],
1339 | "url": "https://api.memegen.link/images/fbf/paper_towel/the_plate_that_cleans_up_after_itself.jpg"
1340 | },
1341 | "source": "http://knowyourmeme.com/memes/foul-bachelor-frog",
1342 | "keywords": [],
1343 | "_self": "https://api.memegen.link/templates/fbf"
1344 | },
1345 | {
1346 | "id": "feelsgood",
1347 | "name": "Feels Good",
1348 | "lines": 2,
1349 | "overlays": 0,
1350 | "styles": [],
1351 | "blank": "https://api.memegen.link/images/feelsgood.jpg",
1352 | "example": {
1353 | "text": [
1354 | "",
1355 | "feels good"
1356 | ],
1357 | "url": "https://api.memegen.link/images/feelsgood/_/feels_good.jpg"
1358 | },
1359 | "source": "https://knowyourmeme.com/memes/feels-good",
1360 | "keywords": [],
1361 | "_self": "https://api.memegen.link/templates/feelsgood"
1362 | },
1363 | {
1364 | "id": "fetch",
1365 | "name": "Stop Trying to Make Fetch Happen",
1366 | "lines": 2,
1367 | "overlays": 0,
1368 | "styles": [],
1369 | "blank": "https://api.memegen.link/images/fetch.jpg",
1370 | "example": {
1371 | "text": [
1372 | "stop trying to make fetch happen",
1373 | "it's not going to happen"
1374 | ],
1375 | "url": "https://api.memegen.link/images/fetch/stop_trying_to_make_fetch_happen/it's_not_going_to_happen.jpg"
1376 | },
1377 | "source": "http://knowyourmeme.com/memes/stop-trying-to-make-fetch-happen",
1378 | "keywords": [],
1379 | "_self": "https://api.memegen.link/templates/fetch"
1380 | },
1381 | {
1382 | "id": "fine",
1383 | "name": "This is Fine",
1384 | "lines": 2,
1385 | "overlays": 1,
1386 | "styles": [
1387 | "animated",
1388 | "default"
1389 | ],
1390 | "blank": "https://api.memegen.link/images/fine.jpg",
1391 | "example": {
1392 | "text": [
1393 | "",
1394 | "this is fine"
1395 | ],
1396 | "url": "https://api.memegen.link/images/fine/_/this_is_fine.webp"
1397 | },
1398 | "source": "http://gunshowcomic.com/648",
1399 | "keywords": [],
1400 | "_self": "https://api.memegen.link/templates/fine"
1401 | },
1402 | {
1403 | "id": "firsttry",
1404 | "name": "First Try!",
1405 | "lines": 2,
1406 | "overlays": 0,
1407 | "styles": [],
1408 | "blank": "https://api.memegen.link/images/firsttry.jpg",
1409 | "example": {
1410 | "text": [
1411 | "",
1412 | "first try!"
1413 | ],
1414 | "url": "https://api.memegen.link/images/firsttry/_/first_try!.jpg"
1415 | },
1416 | "source": "https://www.youtube.com/watch?v=44-RsrF_V_w",
1417 | "keywords": [],
1418 | "_self": "https://api.memegen.link/templates/firsttry"
1419 | },
1420 | {
1421 | "id": "fmr",
1422 | "name": "Fuck Me, Right?",
1423 | "lines": 2,
1424 | "overlays": 0,
1425 | "styles": [],
1426 | "blank": "https://api.memegen.link/images/fmr.jpg",
1427 | "example": {
1428 | "text": [
1429 | "",
1430 | "fuck me, right?"
1431 | ],
1432 | "url": "https://api.memegen.link/images/fmr/_/fuck_me,_right~q.jpg"
1433 | },
1434 | "source": "http://knowyourmeme.com/memes/fuck-me-right",
1435 | "keywords": [],
1436 | "_self": "https://api.memegen.link/templates/fmr"
1437 | },
1438 | {
1439 | "id": "friends",
1440 | "name": "Are You Two Friends?",
1441 | "lines": 3,
1442 | "overlays": 3,
1443 | "styles": [
1444 | "default"
1445 | ],
1446 | "blank": "https://api.memegen.link/images/friends.jpg",
1447 | "example": {
1448 | "text": [
1449 | "Progressives",
1450 | "Republicans",
1451 | "Libertarians"
1452 | ],
1453 | "url": "https://api.memegen.link/images/friends/Progressives/Republicans/Libertarians.jpg"
1454 | },
1455 | "source": "https://knowyourmeme.com/memes/are-you-two-friends",
1456 | "keywords": [
1457 | "Star Trek"
1458 | ],
1459 | "_self": "https://api.memegen.link/templates/friends"
1460 | },
1461 | {
1462 | "id": "fry",
1463 | "name": "Futurama Fry",
1464 | "lines": 2,
1465 | "overlays": 1,
1466 | "styles": [
1467 | "animated",
1468 | "default"
1469 | ],
1470 | "blank": "https://api.memegen.link/images/fry.jpg",
1471 | "example": {
1472 | "text": [
1473 | "not sure if trolling",
1474 | "or just stupid"
1475 | ],
1476 | "url": "https://api.memegen.link/images/fry/not_sure_if_trolling/or_just_stupid.webp"
1477 | },
1478 | "source": "http://knowyourmeme.com/memes/futurama-fry-not-sure-if",
1479 | "keywords": [
1480 | "Philip J. Fry"
1481 | ],
1482 | "_self": "https://api.memegen.link/templates/fry"
1483 | },
1484 | {
1485 | "id": "fwp",
1486 | "name": "First World Problems",
1487 | "lines": 2,
1488 | "overlays": 0,
1489 | "styles": [],
1490 | "blank": "https://api.memegen.link/images/fwp.jpg",
1491 | "example": {
1492 | "text": [
1493 | "someone on the internet",
1494 | "disagrees with me"
1495 | ],
1496 | "url": "https://api.memegen.link/images/fwp/someone_on_the_internet/disagrees_with_me.jpg"
1497 | },
1498 | "source": "http://knowyourmeme.com/memes/first-world-problems",
1499 | "keywords": [],
1500 | "_self": "https://api.memegen.link/templates/fwp"
1501 | },
1502 | {
1503 | "id": "gandalf",
1504 | "name": "Confused Gandalf",
1505 | "lines": 2,
1506 | "overlays": 0,
1507 | "styles": [],
1508 | "blank": "https://api.memegen.link/images/gandalf.jpg",
1509 | "example": {
1510 | "text": [
1511 | "",
1512 | "I have no memory of this place"
1513 | ],
1514 | "url": "https://api.memegen.link/images/gandalf/_/I_have_no_memory_of_this_place.jpg"
1515 | },
1516 | "source": "http://knowyourmeme.com/memes/confused-gandalf",
1517 | "keywords": [
1518 | "Lord of the Rings"
1519 | ],
1520 | "_self": "https://api.memegen.link/templates/gandalf"
1521 | },
1522 | {
1523 | "id": "gb",
1524 | "name": "Galaxy Brain",
1525 | "lines": 4,
1526 | "overlays": 0,
1527 | "styles": [],
1528 | "blank": "https://api.memegen.link/images/gb.jpg",
1529 | "example": {
1530 | "text": [
1531 | "Who",
1532 | "Whom",
1533 | "Whom'st",
1534 | "Whomst'd"
1535 | ],
1536 | "url": "https://api.memegen.link/images/gb/Who/Whom/Whom'st/Whomst'd.jpg"
1537 | },
1538 | "source": "https://knowyourmeme.com/memes/galaxy-brain",
1539 | "keywords": [],
1540 | "_self": "https://api.memegen.link/templates/gb"
1541 | },
1542 | {
1543 | "id": "gears",
1544 | "name": "You Know What Really Grinds My Gears?",
1545 | "lines": 2,
1546 | "overlays": 0,
1547 | "styles": [],
1548 | "blank": "https://api.memegen.link/images/gears.jpg",
1549 | "example": {
1550 | "text": [
1551 | "you know what really grinds my gears?",
1552 | "when people post images of cogs that don't mesh"
1553 | ],
1554 | "url": "https://api.memegen.link/images/gears/you_know_what_really_grinds_my_gears~q/when_people_post_images_of_cogs_that_don't_mesh.jpg"
1555 | },
1556 | "source": "http://knowyourmeme.com/memes/you-know-what-really-grinds-my-gears",
1557 | "keywords": [
1558 | "Family Guy"
1559 | ],
1560 | "_self": "https://api.memegen.link/templates/gears"
1561 | },
1562 | {
1563 | "id": "genie",
1564 | "name": "Genie Lamp",
1565 | "lines": 2,
1566 | "overlays": 0,
1567 | "styles": [],
1568 | "blank": "https://api.memegen.link/images/genie.jpg",
1569 | "example": {
1570 | "text": [
1571 | "phenomenal cosmic power",
1572 | "itty bitty living space"
1573 | ],
1574 | "url": "https://api.memegen.link/images/genie/phenomenal_cosmic_power/itty_bitty_living_space.jpg"
1575 | },
1576 | "source": "https://imgflip.com/memetemplate/205390462",
1577 | "keywords": [
1578 | "Aladin"
1579 | ],
1580 | "_self": "https://api.memegen.link/templates/genie"
1581 | },
1582 | {
1583 | "id": "ggg",
1584 | "name": "Good Guy Greg",
1585 | "lines": 2,
1586 | "overlays": 0,
1587 | "styles": [],
1588 | "blank": "https://api.memegen.link/images/ggg.jpg",
1589 | "example": {
1590 | "text": [
1591 | "sleeps on your couch",
1592 | "makes breakfast"
1593 | ],
1594 | "url": "https://api.memegen.link/images/ggg/sleeps_on_your_couch/makes_breakfast.jpg"
1595 | },
1596 | "source": "http://knowyourmeme.com/memes/good-guy-greg",
1597 | "keywords": [],
1598 | "_self": "https://api.memegen.link/templates/ggg"
1599 | },
1600 | {
1601 | "id": "glasses",
1602 | "name": "Peter Parker's Glasses",
1603 | "lines": 2,
1604 | "overlays": 2,
1605 | "styles": [
1606 | "default"
1607 | ],
1608 | "blank": "https://api.memegen.link/images/glasses.jpg",
1609 | "example": {
1610 | "text": [
1611 | "Virginity is cool, stay pure",
1612 | "I am utterly incapable of getting laid"
1613 | ],
1614 | "url": "https://api.memegen.link/images/glasses/Virginity_is_cool,_stay_pure/I_am_utterly_incapable_of_getting_laid.jpg"
1615 | },
1616 | "source": "https://knowyourmeme.com/memes/peter-parkers-glasses",
1617 | "keywords": [],
1618 | "_self": "https://api.memegen.link/templates/glasses"
1619 | },
1620 | {
1621 | "id": "gone",
1622 | "name": "And It's Gone",
1623 | "lines": 2,
1624 | "overlays": 0,
1625 | "styles": [],
1626 | "blank": "https://api.memegen.link/images/gone.jpg",
1627 | "example": {
1628 | "text": [
1629 | "we'll just invest that money",
1630 | "...aaaand it's gone"
1631 | ],
1632 | "url": "https://api.memegen.link/images/gone/we'll_just_invest_that_money/...aaaand_it's_gone.jpg"
1633 | },
1634 | "source": "https://knowyourmeme.com/memes/and-its-gone",
1635 | "keywords": [
1636 | "South Park"
1637 | ],
1638 | "_self": "https://api.memegen.link/templates/gone"
1639 | },
1640 | {
1641 | "id": "grave",
1642 | "name": "Grant Gustin Next To Oliver Queen's Grave",
1643 | "lines": 3,
1644 | "overlays": 3,
1645 | "styles": [
1646 | "default"
1647 | ],
1648 | "blank": "https://api.memegen.link/images/grave.jpg",
1649 | "example": {
1650 | "text": [
1651 | "Here lies the last bit of human decency",
1652 | "Society",
1653 | "Social Media"
1654 | ],
1655 | "url": "https://api.memegen.link/images/grave/Here_lies_the_last_bit_of_human_decency/Society/Social_Media.jpg"
1656 | },
1657 | "source": "https://knowyourmeme.com/memes/grant-gustin-next-to-oliver-queens-grave",
1658 | "keywords": [],
1659 | "_self": "https://api.memegen.link/templates/grave"
1660 | },
1661 | {
1662 | "id": "gru",
1663 | "name": "Gru's Plan",
1664 | "lines": 4,
1665 | "overlays": 0,
1666 | "styles": [],
1667 | "blank": "https://api.memegen.link/images/gru.jpg",
1668 | "example": {
1669 | "text": [
1670 | "Learn how to make memes.",
1671 | "Make a meme.",
1672 | "No one likes it.",
1673 | "No one likes it."
1674 | ],
1675 | "url": "https://api.memegen.link/images/gru/Learn_how_to_make_memes./Make_a_meme./No_one_likes_it./No_one_likes_it..jpg"
1676 | },
1677 | "source": "https://knowyourmeme.com/memes/grus-plan",
1678 | "keywords": [],
1679 | "_self": "https://api.memegen.link/templates/gru"
1680 | },
1681 | {
1682 | "id": "grumpycat",
1683 | "name": "Grumpy Cat",
1684 | "lines": 2,
1685 | "overlays": 0,
1686 | "styles": [],
1687 | "blank": "https://api.memegen.link/images/grumpycat.jpg",
1688 | "example": {
1689 | "text": [
1690 | "i hope that what does not kill you",
1691 | "tries again"
1692 | ],
1693 | "url": "https://api.memegen.link/images/grumpycat/i_hope_that_what_does_not_kill_you/tries_again.jpg"
1694 | },
1695 | "source": "https://imgflip.com/memegenerator/Grumpy-Cat",
1696 | "keywords": [],
1697 | "_self": "https://api.memegen.link/templates/grumpycat"
1698 | },
1699 | {
1700 | "id": "hagrid",
1701 | "name": "I Should Not Have Said That",
1702 | "lines": 2,
1703 | "overlays": 0,
1704 | "styles": [],
1705 | "blank": "https://api.memegen.link/images/hagrid.jpg",
1706 | "example": {
1707 | "text": [
1708 | "",
1709 | "i should not have said that"
1710 | ],
1711 | "url": "https://api.memegen.link/images/hagrid/_/i_should_not_have_said_that.jpg"
1712 | },
1713 | "source": "https://www.youtube.com/watch?v=498HkRM77gg",
1714 | "keywords": [
1715 | "Harry Potter"
1716 | ],
1717 | "_self": "https://api.memegen.link/templates/hagrid"
1718 | },
1719 | {
1720 | "id": "happening",
1721 | "name": "It's Happening",
1722 | "lines": 2,
1723 | "overlays": 1,
1724 | "styles": [
1725 | "animated",
1726 | "default"
1727 | ],
1728 | "blank": "https://api.memegen.link/images/happening.jpg",
1729 | "example": {
1730 | "text": [
1731 | "",
1732 | "it's happening"
1733 | ],
1734 | "url": "https://api.memegen.link/images/happening/_/it's_happening.webp"
1735 | },
1736 | "source": "http://knowyourmeme.com/memes/doom-paul-its-happening",
1737 | "keywords": [],
1738 | "_self": "https://api.memegen.link/templates/happening"
1739 | },
1740 | {
1741 | "id": "harold",
1742 | "name": "Hide the Pain Harold",
1743 | "lines": 2,
1744 | "overlays": 0,
1745 | "styles": [],
1746 | "blank": "https://api.memegen.link/images/harold.jpg",
1747 | "example": {
1748 | "text": [
1749 | "when the boss sees",
1750 | "your meme tab"
1751 | ],
1752 | "url": "https://api.memegen.link/images/harold/when_the_boss_sees/your_meme_tab.jpg"
1753 | },
1754 | "source": "https://knowyourmeme.com/memes/hide-the-pain-harold",
1755 | "keywords": [],
1756 | "_self": "https://api.memegen.link/templates/harold"
1757 | },
1758 | {
1759 | "id": "headaches",
1760 | "name": "Types of Headaches",
1761 | "lines": 1,
1762 | "overlays": 1,
1763 | "styles": [
1764 | "default"
1765 | ],
1766 | "blank": "https://api.memegen.link/images/headaches.jpg",
1767 | "example": {
1768 | "text": [
1769 | "Breaking Production"
1770 | ],
1771 | "url": "https://api.memegen.link/images/headaches/Breaking_Production.jpg"
1772 | },
1773 | "source": "https://knowyourmeme.com/memes/types-of-headaches",
1774 | "keywords": [],
1775 | "_self": "https://api.memegen.link/templates/headaches"
1776 | },
1777 | {
1778 | "id": "hipster",
1779 | "name": "Hipster Barista",
1780 | "lines": 2,
1781 | "overlays": 0,
1782 | "styles": [],
1783 | "blank": "https://api.memegen.link/images/hipster.jpg",
1784 | "example": {
1785 | "text": [
1786 | "puts coffee deal on Groupon",
1787 | "rolls eyes when you actually use it"
1788 | ],
1789 | "url": "https://api.memegen.link/images/hipster/puts_coffee_deal_on_Groupon/rolls_eyes_when_you_actually_use_it.jpg"
1790 | },
1791 | "source": "http://knowyourmeme.com/memes/hipster-barista",
1792 | "keywords": [],
1793 | "_self": "https://api.memegen.link/templates/hipster"
1794 | },
1795 | {
1796 | "id": "home",
1797 | "name": "We Have Food at Home",
1798 | "lines": 3,
1799 | "overlays": 1,
1800 | "styles": [
1801 | "default"
1802 | ],
1803 | "blank": "https://api.memegen.link/images/home.jpg",
1804 | "example": {
1805 | "text": [
1806 | "Me: Can we stop and get food?",
1807 | "Mom: We have food at home.",
1808 | "Food at home:"
1809 | ],
1810 | "url": "https://api.memegen.link/images/home/Me:_Can_we_stop_and_get_food~q/Mom:_We_have_food_at_home./Food_at_home:.jpg"
1811 | },
1812 | "source": "https://knowyourmeme.com/memes/we-have-food-at-home",
1813 | "keywords": [],
1814 | "_self": "https://api.memegen.link/templates/home"
1815 | },
1816 | {
1817 | "id": "icanhas",
1818 | "name": "I Can Has Cheezburger?",
1819 | "lines": 2,
1820 | "overlays": 0,
1821 | "styles": [],
1822 | "blank": "https://api.memegen.link/images/icanhas.jpg",
1823 | "example": {
1824 | "text": [
1825 | "i can has",
1826 | "this meme?"
1827 | ],
1828 | "url": "https://api.memegen.link/images/icanhas/i_can_has/this_meme~q.jpg"
1829 | },
1830 | "source": "http://knowyourmeme.com/memes/happy-cat",
1831 | "keywords": [],
1832 | "_self": "https://api.memegen.link/templates/icanhas"
1833 | },
1834 | {
1835 | "id": "imsorry",
1836 | "name": "Oh, I'm Sorry, I Thought This Was America",
1837 | "lines": 2,
1838 | "overlays": 0,
1839 | "styles": [],
1840 | "blank": "https://api.memegen.link/images/imsorry.jpg",
1841 | "example": {
1842 | "text": [
1843 | "oh, i'm sorry",
1844 | "i thought this was america"
1845 | ],
1846 | "url": "https://api.memegen.link/images/imsorry/oh,_i'm_sorry/i_thought_this_was_america.jpg"
1847 | },
1848 | "source": "http://knowyourmeme.com/memes/oh-im-sorry-i-thought-this-was-america",
1849 | "keywords": [],
1850 | "_self": "https://api.memegen.link/templates/imsorry"
1851 | },
1852 | {
1853 | "id": "inigo",
1854 | "name": "Inigo Montoya",
1855 | "lines": 2,
1856 | "overlays": 0,
1857 | "styles": [],
1858 | "blank": "https://api.memegen.link/images/inigo.jpg",
1859 | "example": {
1860 | "text": [
1861 | "you keep using that word",
1862 | "i do not think it means what you think it means"
1863 | ],
1864 | "url": "https://api.memegen.link/images/inigo/you_keep_using_that_word/i_do_not_think_it_means_what_you_think_it_means.jpg"
1865 | },
1866 | "source": "http://knowyourmeme.com/memes/you-keep-using-that-word-i-do-not-think-it-means-what-you-think-it-means",
1867 | "keywords": [],
1868 | "_self": "https://api.memegen.link/templates/inigo"
1869 | },
1870 | {
1871 | "id": "interesting",
1872 | "name": "The Most Interesting Man in the World",
1873 | "lines": 2,
1874 | "overlays": 0,
1875 | "styles": [],
1876 | "blank": "https://api.memegen.link/images/interesting.jpg",
1877 | "example": {
1878 | "text": [
1879 | "I don't often drink beer",
1880 | "so you shouldn't value my opinion"
1881 | ],
1882 | "url": "https://api.memegen.link/images/interesting/I_don't_often_drink_beer/so_you_shouldn't_value_my_opinion.jpg"
1883 | },
1884 | "source": "http://knowyourmeme.com/memes/the-most-interesting-man-in-the-world",
1885 | "keywords": [],
1886 | "_self": "https://api.memegen.link/templates/interesting"
1887 | },
1888 | {
1889 | "id": "ive",
1890 | "name": "Jony Ive Redesigns Things",
1891 | "lines": 2,
1892 | "overlays": 0,
1893 | "styles": [],
1894 | "blank": "https://api.memegen.link/images/ive.jpg",
1895 | "example": {
1896 | "text": [
1897 | "we think",
1898 | "you'll love it"
1899 | ],
1900 | "url": "https://api.memegen.link/images/ive/we_think/you'll_love_it.jpg"
1901 | },
1902 | "source": "https://www.apple.com/pr/bios/jonathan-ive.html",
1903 | "keywords": [],
1904 | "_self": "https://api.memegen.link/templates/ive"
1905 | },
1906 | {
1907 | "id": "iw",
1908 | "name": "Insanity Wolf",
1909 | "lines": 2,
1910 | "overlays": 1,
1911 | "styles": [
1912 | "default"
1913 | ],
1914 | "blank": "https://api.memegen.link/images/iw.jpg",
1915 | "example": {
1916 | "text": [
1917 | "does testing",
1918 | "in production"
1919 | ],
1920 | "url": "https://api.memegen.link/images/iw/does_testing/in_production.jpg"
1921 | },
1922 | "source": "http://knowyourmeme.com/memes/insanity-wolf",
1923 | "keywords": [],
1924 | "_self": "https://api.memegen.link/templates/iw"
1925 | },
1926 | {
1927 | "id": "jd",
1928 | "name": "Joseph Ducreux",
1929 | "lines": 2,
1930 | "overlays": 0,
1931 | "styles": [],
1932 | "blank": "https://api.memegen.link/images/jd.jpg",
1933 | "example": {
1934 | "text": [
1935 | "disregard females",
1936 | "acquire currency"
1937 | ],
1938 | "url": "https://api.memegen.link/images/jd/disregard_females/acquire_currency.jpg"
1939 | },
1940 | "source": "https://knowyourmeme.com/memes/joseph-ducreux-archaic-rap",
1941 | "keywords": [
1942 | "Archaic Rap"
1943 | ],
1944 | "_self": "https://api.memegen.link/templates/jd"
1945 | },
1946 | {
1947 | "id": "jetpack",
1948 | "name": "Nothing To Do Here",
1949 | "lines": 2,
1950 | "overlays": 0,
1951 | "styles": [],
1952 | "blank": "https://api.memegen.link/images/jetpack.jpg",
1953 | "example": {
1954 | "text": [
1955 | "nothing to do here"
1956 | ],
1957 | "url": "https://api.memegen.link/images/jetpack/nothing_to_do_here.jpg"
1958 | },
1959 | "source": "http://knowyourmeme.com/memes/nothing-to-do-here-jet-pack-guy",
1960 | "keywords": [],
1961 | "_self": "https://api.memegen.link/templates/jetpack"
1962 | },
1963 | {
1964 | "id": "jim",
1965 | "name": "Jim Halpert Pointing to Whiteboard",
1966 | "lines": 2,
1967 | "overlays": 2,
1968 | "styles": [
1969 | "default"
1970 | ],
1971 | "blank": "https://api.memegen.link/images/jim.jpg",
1972 | "example": {
1973 | "text": [
1974 | "It's OK to like trashy shows and movies",
1975 | "If it makes you happy then it's not a waste of time"
1976 | ],
1977 | "url": "https://api.memegen.link/images/jim/It's_OK_to_like_trashy_shows_and_movies/If_it_makes_you_happy_then_it's_not_a_waste_of_time.jpg"
1978 | },
1979 | "source": "https://knowyourmeme.com/memes/jim-halpert-pointing-to-whiteboard",
1980 | "keywords": [
1981 | "The Office"
1982 | ],
1983 | "_self": "https://api.memegen.link/templates/jim"
1984 | },
1985 | {
1986 | "id": "joker",
1987 | "name": "It's Simple, Kill the Batman",
1988 | "lines": 2,
1989 | "overlays": 0,
1990 | "styles": [],
1991 | "blank": "https://api.memegen.link/images/joker.jpg",
1992 | "example": {
1993 | "text": [
1994 | "it's simple",
1995 | "kill the batman"
1996 | ],
1997 | "url": "https://api.memegen.link/images/joker/it's_simple/kill_the_batman.jpg"
1998 | },
1999 | "source": "https://www.youtube.com/watch?v=f_XHjqABQQA",
2000 | "keywords": [],
2001 | "_self": "https://api.memegen.link/templates/joker"
2002 | },
2003 | {
2004 | "id": "jw",
2005 | "name": "Probably Not a Good Idea",
2006 | "lines": 2,
2007 | "overlays": 1,
2008 | "styles": [
2009 | "alternate",
2010 | "default"
2011 | ],
2012 | "blank": "https://api.memegen.link/images/jw.jpg",
2013 | "example": {
2014 | "text": [
2015 | "you just went and made a new dinosaur?",
2016 | "probably not a good idea"
2017 | ],
2018 | "url": "https://api.memegen.link/images/jw/you_just_went_and_made_a_new_dinosaur~q/probably_not_a_good_idea.jpg"
2019 | },
2020 | "source": "https://www.youtube.com/watch?v=RFinNxS5KN4&t=86",
2021 | "keywords": [],
2022 | "_self": "https://api.memegen.link/templates/jw"
2023 | },
2024 | {
2025 | "id": "keanu",
2026 | "name": "Conspiracy Keanu",
2027 | "lines": 2,
2028 | "overlays": 0,
2029 | "styles": [],
2030 | "blank": "https://api.memegen.link/images/keanu.jpg",
2031 | "example": {
2032 | "text": [
2033 | "what if the CIA invented dinosaurs",
2034 | "to discourage time travel?"
2035 | ],
2036 | "url": "https://api.memegen.link/images/keanu/what_if_the_CIA_invented_dinosaurs/to_discourage_time_travel~q.jpg"
2037 | },
2038 | "source": "http://knowyourmeme.com/memes/conspiracy-keanu",
2039 | "keywords": [],
2040 | "_self": "https://api.memegen.link/templates/keanu"
2041 | },
2042 | {
2043 | "id": "kermit",
2044 | "name": "But That's None of My Business",
2045 | "lines": 2,
2046 | "overlays": 0,
2047 | "styles": [],
2048 | "blank": "https://api.memegen.link/images/kermit.jpg",
2049 | "example": {
2050 | "text": [
2051 | "",
2052 | "but that's none of my business"
2053 | ],
2054 | "url": "https://api.memegen.link/images/kermit/_/but_that's_none_of_my_business.jpg"
2055 | },
2056 | "source": "http://knowyourmeme.com/memes/but-thats-none-of-my-business",
2057 | "keywords": [],
2058 | "_self": "https://api.memegen.link/templates/kermit"
2059 | },
2060 | {
2061 | "id": "khaby-lame",
2062 | "name": "Khaby Lame Shrug",
2063 | "lines": 2,
2064 | "overlays": 2,
2065 | "styles": [
2066 | "default"
2067 | ],
2068 | "blank": "https://api.memegen.link/images/khaby-lame.jpg",
2069 | "example": {
2070 | "text": [
2071 | "Bad mood?",
2072 | "Laugh at memes"
2073 | ],
2074 | "url": "https://api.memegen.link/images/khaby-lame/Bad_mood~q/Laugh_at_memes.jpg"
2075 | },
2076 | "source": "https://knowyourmeme.com/photos/2132291-khaby-lame-shrug-its-that-simple",
2077 | "keywords": [
2078 | "It's That Sample"
2079 | ],
2080 | "_self": "https://api.memegen.link/templates/khaby-lame"
2081 | },
2082 | {
2083 | "id": "kk",
2084 | "name": "Karate Kyle",
2085 | "lines": 2,
2086 | "overlays": 1,
2087 | "styles": [
2088 | "default",
2089 | "luke"
2090 | ],
2091 | "blank": "https://api.memegen.link/images/kk.jpg",
2092 | "example": {
2093 | "text": [
2094 | "they broke my pencils",
2095 | "i broke their neck"
2096 | ],
2097 | "url": "https://api.memegen.link/images/kk/they_broke_my_pencils/i_broke_their_neck.jpg"
2098 | },
2099 | "source": "https://knowyourmeme.com/memes/karate-kyle",
2100 | "keywords": [],
2101 | "_self": "https://api.memegen.link/templates/kk"
2102 | },
2103 | {
2104 | "id": "kombucha",
2105 | "name": "Kombucha Girl",
2106 | "lines": 2,
2107 | "overlays": 0,
2108 | "styles": [],
2109 | "blank": "https://api.memegen.link/images/kombucha.jpg",
2110 | "example": {
2111 | "text": [
2112 | "Trying a thing.",
2113 | "Trying a thing again."
2114 | ],
2115 | "url": "https://api.memegen.link/images/kombucha/Trying_a_thing./Trying_a_thing_again..jpg"
2116 | },
2117 | "source": "https://www.buzzfeed.com/daniellaemanuel/woman-trying-kombucha-meme",
2118 | "keywords": [],
2119 | "_self": "https://api.memegen.link/templates/kombucha"
2120 | },
2121 | {
2122 | "id": "kramer",
2123 | "name": "Kramer, What's Going On In There?",
2124 | "lines": 2,
2125 | "overlays": 1,
2126 | "styles": [
2127 | "default",
2128 | "seinfeld"
2129 | ],
2130 | "blank": "https://api.memegen.link/images/kramer.jpg",
2131 | "example": {
2132 | "text": [
2133 | "Kramer, what's going on in there?",
2134 | "It's a Chicken Roaster sign, right across from my window."
2135 | ],
2136 | "url": "https://api.memegen.link/images/kramer/Kramer,_what's_going_on_in_there~q/It's_a_Chicken_Roaster_sign,_right_across_from_my_window..jpg"
2137 | },
2138 | "source": "https://knowyourmeme.com/memes/kramer-whats-going-on-in-there",
2139 | "keywords": [],
2140 | "_self": "https://api.memegen.link/templates/kramer"
2141 | },
2142 | {
2143 | "id": "leo",
2144 | "name": "Leo Strutting",
2145 | "lines": 2,
2146 | "overlays": 0,
2147 | "styles": [],
2148 | "blank": "https://api.memegen.link/images/leo.jpg",
2149 | "example": {
2150 | "text": [
2151 | "I have no idea",
2152 | "what I am doing"
2153 | ],
2154 | "url": "https://api.memegen.link/images/leo/I_have_no_idea/what_I_am_doing.jpg"
2155 | },
2156 | "source": "https://knowyourmeme.com/memes/strutting-leo",
2157 | "keywords": [],
2158 | "_self": "https://api.memegen.link/templates/leo"
2159 | },
2160 | {
2161 | "id": "light",
2162 | "name": "Everything the Light Touches is Our Kingdom",
2163 | "lines": 2,
2164 | "overlays": 2,
2165 | "styles": [
2166 | "default"
2167 | ],
2168 | "blank": "https://api.memegen.link/images/light.jpg",
2169 | "example": {
2170 | "text": [
2171 | "What about that shadowy place?",
2172 | "That's beyond our borders. You must never go there."
2173 | ],
2174 | "url": "https://api.memegen.link/images/light/What_about_that_shadowy_place~q/That's_beyond_our_borders._You_must_never_go_there..jpg"
2175 | },
2176 | "source": "https://www.youtube.com/watch?v=JawCb15MWLc",
2177 | "keywords": [
2178 | "Lion King",
2179 | "Mufasa and Simba"
2180 | ],
2181 | "_self": "https://api.memegen.link/templates/light"
2182 | },
2183 | {
2184 | "id": "live",
2185 | "name": "Do It Live!",
2186 | "lines": 2,
2187 | "overlays": 1,
2188 | "styles": [
2189 | "animated",
2190 | "default"
2191 | ],
2192 | "blank": "https://api.memegen.link/images/live.jpg",
2193 | "example": {
2194 | "text": [
2195 | "",
2196 | "do it live!"
2197 | ],
2198 | "url": "https://api.memegen.link/images/live/_/do_it_live!.webp"
2199 | },
2200 | "source": "http://knowyourmeme.com/memes/bill-oreilly-rant",
2201 | "keywords": [],
2202 | "_self": "https://api.memegen.link/templates/live"
2203 | },
2204 | {
2205 | "id": "ll",
2206 | "name": "Laughing Lizard",
2207 | "lines": 2,
2208 | "overlays": 0,
2209 | "styles": [],
2210 | "blank": "https://api.memegen.link/images/ll.jpg",
2211 | "example": {
2212 | "text": [
2213 | "",
2214 | "hhhehehe"
2215 | ],
2216 | "url": "https://api.memegen.link/images/ll/_/hhhehehe.jpg"
2217 | },
2218 | "source": "http://knowyourmeme.com/memes/laughing-lizard-hhhehehe",
2219 | "keywords": [],
2220 | "_self": "https://api.memegen.link/templates/ll"
2221 | },
2222 | {
2223 | "id": "lrv",
2224 | "name": "Laundry Room Viking",
2225 | "lines": 2,
2226 | "overlays": 0,
2227 | "styles": [],
2228 | "blank": "https://api.memegen.link/images/lrv.jpg",
2229 | "example": {
2230 | "text": [
2231 | "do the laundry they said",
2232 | "it will be fun they said"
2233 | ],
2234 | "url": "https://api.memegen.link/images/lrv/do_the_laundry_they_said/it_will_be_fun_they_said.jpg"
2235 | },
2236 | "source": "http://knowyourmeme.com/memes/laundry-room-viking",
2237 | "keywords": [],
2238 | "_self": "https://api.memegen.link/templates/lrv"
2239 | },
2240 | {
2241 | "id": "made",
2242 | "name": "I Made This",
2243 | "lines": 5,
2244 | "overlays": 3,
2245 | "styles": [
2246 | "default"
2247 | ],
2248 | "blank": "https://api.memegen.link/images/made.jpg",
2249 | "example": {
2250 | "text": [
2251 | "The Internet",
2252 | "Everyone",
2253 | "I made this.",
2254 | "You made this?",
2255 | "I made this."
2256 | ],
2257 | "url": "https://api.memegen.link/images/made/The_Internet/Everyone/I_made_this./You_made_this~q/I_made_this..jpg"
2258 | },
2259 | "source": "https://knowyourmeme.com/memes/i-made-this",
2260 | "keywords": [],
2261 | "_self": "https://api.memegen.link/templates/made"
2262 | },
2263 | {
2264 | "id": "mb",
2265 | "name": "Member Berries",
2266 | "lines": 2,
2267 | "overlays": 1,
2268 | "styles": [
2269 | "animated",
2270 | "box",
2271 | "default",
2272 | "flood"
2273 | ],
2274 | "blank": "https://api.memegen.link/images/mb.jpg",
2275 | "example": {
2276 | "text": [
2277 | "'member",
2278 | "star wars?"
2279 | ],
2280 | "url": "https://api.memegen.link/images/mb/'member/star_wars~q.webp"
2281 | },
2282 | "source": "http://knowyourmeme.com/memes/member-berries",
2283 | "keywords": [],
2284 | "_self": "https://api.memegen.link/templates/mb"
2285 | },
2286 | {
2287 | "id": "michael-scott",
2288 | "name": "Michael Scott No God No",
2289 | "lines": 2,
2290 | "overlays": 0,
2291 | "styles": [],
2292 | "blank": "https://api.memegen.link/images/michael-scott.jpg",
2293 | "example": {
2294 | "text": [
2295 | "no, god! no god please no!",
2296 | "noooooooooooooooo!"
2297 | ],
2298 | "url": "https://api.memegen.link/images/michael-scott/no,_god!_no_god_please_no!/noooooooooooooooo!.jpg"
2299 | },
2300 | "source": "https://www.youtube.com/watch?v=31g0YE61PLQ",
2301 | "keywords": [
2302 | "The Office"
2303 | ],
2304 | "_self": "https://api.memegen.link/templates/michael-scott"
2305 | },
2306 | {
2307 | "id": "midwit",
2308 | "name": "Midwit",
2309 | "lines": 3,
2310 | "overlays": 1,
2311 | "styles": [
2312 | "default"
2313 | ],
2314 | "blank": "https://api.memegen.link/images/midwit.jpg",
2315 | "example": {
2316 | "text": [
2317 | "if it's good I do it",
2318 | "NOOOOO you have to have complex reasons for what you're doing. what is the point. what is your goal.",
2319 | "if it's good I do it"
2320 | ],
2321 | "url": "https://api.memegen.link/images/midwit/if_it's_good_I_do_it/NOOOOO_you_have_to_have_complex_reasons_for_what_you're_doing._what_is_the_point._what_is_your_goal./if_it's_good_I_do_it.jpg"
2322 | },
2323 | "source": "https://knowyourmeme.com/memes/iq-bell-curve-midwit",
2324 | "keywords": [
2325 | "IQ Bell Curve / Midwit"
2326 | ],
2327 | "_self": "https://api.memegen.link/templates/midwit"
2328 | },
2329 | {
2330 | "id": "millers",
2331 | "name": "You Guys Are Getting Paid?",
2332 | "lines": 4,
2333 | "overlays": 0,
2334 | "styles": [],
2335 | "blank": "https://api.memegen.link/images/millers.jpg",
2336 | "example": {
2337 | "text": [
2338 | "",
2339 | "You are making 500 thousand dollars and you were only gonna pay me 30?",
2340 | "You're getting 30 grand? I'm getting a thousand!",
2341 | "You guys are getting paid?"
2342 | ],
2343 | "url": "https://api.memegen.link/images/millers/_/You_are_making_500_thousand_dollars_and_you_were_only_gonna_pay_me_30~q/You're_getting_30_grand~q_I'm_getting_a_thousand!/You_guys_are_getting_paid~q.jpg"
2344 | },
2345 | "source": "https://knowyourmeme.com/photos/1712302-you-guys-are-getting-paid",
2346 | "keywords": [],
2347 | "_self": "https://api.memegen.link/templates/millers"
2348 | },
2349 | {
2350 | "id": "mini-keanu",
2351 | "name": "Mini Keanu Reeves",
2352 | "lines": 2,
2353 | "overlays": 0,
2354 | "styles": [],
2355 | "blank": "https://api.memegen.link/images/mini-keanu.jpg",
2356 | "example": {
2357 | "text": [
2358 | "me waiting for mom to stop talking on the phone",
2359 | "so I can tell her my Pokemon evolved"
2360 | ],
2361 | "url": "https://api.memegen.link/images/mini-keanu/me_waiting_for_mom_to_stop_talking_on_the_phone/so_I_can_tell_her_my_Pokemon_evolved.jpg"
2362 | },
2363 | "source": "https://knowyourmeme.com/memes/mini-keanu-reeves",
2364 | "keywords": [],
2365 | "_self": "https://api.memegen.link/templates/mini-keanu"
2366 | },
2367 | {
2368 | "id": "mmm",
2369 | "name": "Minor Mistake Marvin",
2370 | "lines": 2,
2371 | "overlays": 1,
2372 | "styles": [
2373 | "default"
2374 | ],
2375 | "blank": "https://api.memegen.link/images/mmm.jpg",
2376 | "example": {
2377 | "text": [
2378 | "Puts ice cream back",
2379 | "Into the refrigerator"
2380 | ],
2381 | "url": "https://api.memegen.link/images/mmm/Puts_ice_cream_back/Into_the_refrigerator.jpg"
2382 | },
2383 | "source": "http://knowyourmeme.com/memes/minor-mistake-marvin",
2384 | "keywords": [],
2385 | "_self": "https://api.memegen.link/templates/mmm"
2386 | },
2387 | {
2388 | "id": "money",
2389 | "name": "Shut Up and Take My Money!",
2390 | "lines": 2,
2391 | "overlays": 1,
2392 | "styles": [
2393 | "animated",
2394 | "default"
2395 | ],
2396 | "blank": "https://api.memegen.link/images/money.jpg",
2397 | "example": {
2398 | "text": [
2399 | "shut up and",
2400 | "take my money!"
2401 | ],
2402 | "url": "https://api.memegen.link/images/money/shut_up_and/take_my_money!.webp"
2403 | },
2404 | "source": "http://knowyourmeme.com/memes/shut-up-and-take-my-money",
2405 | "keywords": [
2406 | "Futurama",
2407 | "Philip J. Fry"
2408 | ],
2409 | "_self": "https://api.memegen.link/templates/money"
2410 | },
2411 | {
2412 | "id": "mordor",
2413 | "name": "One Does Not Simply Walk into Mordor",
2414 | "lines": 2,
2415 | "overlays": 0,
2416 | "styles": [],
2417 | "blank": "https://api.memegen.link/images/mordor.jpg",
2418 | "example": {
2419 | "text": [
2420 | "one does not simply",
2421 | "walk into mordor"
2422 | ],
2423 | "url": "https://api.memegen.link/images/mordor/one_does_not_simply/walk_into_mordor.jpg"
2424 | },
2425 | "source": "http://knowyourmeme.com/memes/one-does-not-simply-walk-into-mordor",
2426 | "keywords": [],
2427 | "_self": "https://api.memegen.link/templates/mordor"
2428 | },
2429 | {
2430 | "id": "morpheus",
2431 | "name": "Matrix Morpheus",
2432 | "lines": 2,
2433 | "overlays": 0,
2434 | "styles": [],
2435 | "blank": "https://api.memegen.link/images/morpheus.jpg",
2436 | "example": {
2437 | "text": [
2438 | "what if I told you that",
2439 | "reality was an illusion?"
2440 | ],
2441 | "url": "https://api.memegen.link/images/morpheus/what_if_I_told_you_that/reality_was_an_illusion~q.jpg"
2442 | },
2443 | "source": "http://knowyourmeme.com/memes/matrix-morpheus",
2444 | "keywords": [],
2445 | "_self": "https://api.memegen.link/templates/morpheus"
2446 | },
2447 | {
2448 | "id": "mouth",
2449 | "name": "Woman Holding Dog's Mouth",
2450 | "lines": 3,
2451 | "overlays": 0,
2452 | "styles": [],
2453 | "blank": "https://api.memegen.link/images/mouth.jpg",
2454 | "example": {
2455 | "text": [
2456 | "Sales Team presenting the solution in PowerPoint",
2457 | "Excited Customer",
2458 | "Engineering Team knowing the solution is not technically possible"
2459 | ],
2460 | "url": "https://api.memegen.link/images/mouth/Sales_Team_presenting_the_solution_in_PowerPoint/Excited_Customer/Engineering_Team_knowing_the_solution_is_not_technically_possible.jpg"
2461 | },
2462 | "source": "https://knowyourmeme.com/memes/women-holding-dogs-mouth",
2463 | "keywords": [],
2464 | "_self": "https://api.memegen.link/templates/mouth"
2465 | },
2466 | {
2467 | "id": "mw",
2468 | "name": "I Guarantee It",
2469 | "lines": 2,
2470 | "overlays": 0,
2471 | "styles": [],
2472 | "blank": "https://api.memegen.link/images/mw.jpg",
2473 | "example": {
2474 | "text": [
2475 | "you're gonna like the way you look",
2476 | "i guarantee it"
2477 | ],
2478 | "url": "https://api.memegen.link/images/mw/you're_gonna_like_the_way_you_look/i_guarantee_it.jpg"
2479 | },
2480 | "source": "http://knowyourmeme.com/memes/george-zimmer-i-guarantee-it",
2481 | "keywords": [],
2482 | "_self": "https://api.memegen.link/templates/mw"
2483 | },
2484 | {
2485 | "id": "nails",
2486 | "name": "Guy Hammering Nails Into Sand",
2487 | "lines": 3,
2488 | "overlays": 0,
2489 | "styles": [],
2490 | "blank": "https://api.memegen.link/images/nails.jpg",
2491 | "example": {
2492 | "text": [
2493 | "Humanity",
2494 | "Language",
2495 | "The inherently indescribably nature of the universe"
2496 | ],
2497 | "url": "https://api.memegen.link/images/nails/Humanity/Language/The_inherently_indescribably_nature_of_the_universe.jpg"
2498 | },
2499 | "source": "https://keepmeme.com/meme/when-the-boss-coming-and-you-need-to-pretend-doing-something-hammering-nails-into-the-sand-beach-meme",
2500 | "keywords": [],
2501 | "_self": "https://api.memegen.link/templates/nails"
2502 | },
2503 | {
2504 | "id": "nice",
2505 | "name": "So I Got That Goin' For Me, Which is Nice",
2506 | "lines": 2,
2507 | "overlays": 0,
2508 | "styles": [],
2509 | "blank": "https://api.memegen.link/images/nice.jpg",
2510 | "example": {
2511 | "text": [
2512 | "",
2513 | "so i got that goin' for me, which is nice"
2514 | ],
2515 | "url": "https://api.memegen.link/images/nice/_/so_i_got_that_goin'_for_me,_which_is_nice.jpg"
2516 | },
2517 | "source": "http://knowyourmeme.com/memes/so-i-got-that-goin-for-me-which-is-nice",
2518 | "keywords": [],
2519 | "_self": "https://api.memegen.link/templates/nice"
2520 | },
2521 | {
2522 | "id": "noah",
2523 | "name": "What the Hell is This?",
2524 | "lines": 4,
2525 | "overlays": 1,
2526 | "styles": [
2527 | "default"
2528 | ],
2529 | "blank": "https://api.memegen.link/images/noah.jpg",
2530 | "example": {
2531 | "text": [
2532 | "Street",
2533 | "Road",
2534 | "Stroad",
2535 | "What the hell is this?"
2536 | ],
2537 | "url": "https://api.memegen.link/images/noah/Street/Road/Stroad/What_the_hell_is_this~q.jpg"
2538 | },
2539 | "source": null,
2540 | "keywords": [
2541 | "Family Guy Noah"
2542 | ],
2543 | "_self": "https://api.memegen.link/templates/noah"
2544 | },
2545 | {
2546 | "id": "noidea",
2547 | "name": "I Have No Idea What I'm Doing",
2548 | "lines": 2,
2549 | "overlays": 0,
2550 | "styles": [],
2551 | "blank": "https://api.memegen.link/images/noidea.jpg",
2552 | "example": {
2553 | "text": [
2554 | "i have no idea",
2555 | "what i'm doing"
2556 | ],
2557 | "url": "https://api.memegen.link/images/noidea/i_have_no_idea/what_i'm_doing.jpg"
2558 | },
2559 | "source": "http://knowyourmeme.com/memes/i-have-no-idea-what-i-m-doing",
2560 | "keywords": [],
2561 | "_self": "https://api.memegen.link/templates/noidea"
2562 | },
2563 | {
2564 | "id": "ntot",
2565 | "name": "No Take, Only Throw",
2566 | "lines": 3,
2567 | "overlays": 0,
2568 | "styles": [],
2569 | "blank": "https://api.memegen.link/images/ntot.jpg",
2570 | "example": {
2571 | "text": [
2572 | "Pls throw??",
2573 | "NO TAKE!!",
2574 | "ONLY THROW"
2575 | ],
2576 | "url": "https://api.memegen.link/images/ntot/Pls_throw~q~q/NO_TAKE!!/ONLY_THROW.jpg"
2577 | },
2578 | "source": "https://knowyourmeme.com/memes/no-take-only-throw",
2579 | "keywords": [],
2580 | "_self": "https://api.memegen.link/templates/ntot"
2581 | },
2582 | {
2583 | "id": "oag",
2584 | "name": "Overly Attached Girlfriend",
2585 | "lines": 2,
2586 | "overlays": 0,
2587 | "styles": [],
2588 | "blank": "https://api.memegen.link/images/oag.jpg",
2589 | "example": {
2590 | "text": [
2591 | "i know you received my email",
2592 | "because i checked your inbox"
2593 | ],
2594 | "url": "https://api.memegen.link/images/oag/i_know_you_received_my_email/because_i_checked_your_inbox.jpg"
2595 | },
2596 | "source": "http://knowyourmeme.com/memes/overly-attached-girlfriend",
2597 | "keywords": [],
2598 | "_self": "https://api.memegen.link/templates/oag"
2599 | },
2600 | {
2601 | "id": "officespace",
2602 | "name": "That Would Be Great",
2603 | "lines": 2,
2604 | "overlays": 0,
2605 | "styles": [],
2606 | "blank": "https://api.memegen.link/images/officespace.jpg",
2607 | "example": {
2608 | "text": [
2609 | "yeah...",
2610 | "that'd be great"
2611 | ],
2612 | "url": "https://api.memegen.link/images/officespace/yeah.../that'd_be_great.jpg"
2613 | },
2614 | "source": "http://knowyourmeme.com/memes/that-would-be-great",
2615 | "keywords": [],
2616 | "_self": "https://api.memegen.link/templates/officespace"
2617 | },
2618 | {
2619 | "id": "older",
2620 | "name": "An Older Code Sir, But It Checks Out",
2621 | "lines": 2,
2622 | "overlays": 0,
2623 | "styles": [],
2624 | "blank": "https://api.memegen.link/images/older.jpg",
2625 | "example": {
2626 | "text": [
2627 | "it's an older meme sir",
2628 | "but it checks out"
2629 | ],
2630 | "url": "https://api.memegen.link/images/older/it's_an_older_meme_sir/but_it_checks_out.jpg"
2631 | },
2632 | "source": "http://knowyourmeme.com/memes/its-an-older-meme-but-it-checks-out",
2633 | "keywords": [],
2634 | "_self": "https://api.memegen.link/templates/older"
2635 | },
2636 | {
2637 | "id": "oprah",
2638 | "name": "Oprah You Get a Car",
2639 | "lines": 2,
2640 | "overlays": 1,
2641 | "styles": [
2642 | "animated",
2643 | "default"
2644 | ],
2645 | "blank": "https://api.memegen.link/images/oprah.jpg",
2646 | "example": {
2647 | "text": [
2648 | "Top Line",
2649 | "Bottom Line"
2650 | ],
2651 | "url": "https://api.memegen.link/images/oprah/Top_Line/Bottom_Line.webp"
2652 | },
2653 | "source": "http://knowyourmeme.com/memes/oprah-you-get-a-car",
2654 | "keywords": [
2655 | "everybody gets",
2656 | "you win"
2657 | ],
2658 | "_self": "https://api.memegen.link/templates/oprah"
2659 | },
2660 | {
2661 | "id": "panik-kalm-panik",
2662 | "name": "Panik Kalm Panik",
2663 | "lines": 3,
2664 | "overlays": 1,
2665 | "styles": [
2666 | "default"
2667 | ],
2668 | "blank": "https://api.memegen.link/images/panik-kalm-panik.jpg",
2669 | "example": {
2670 | "text": [
2671 | "You hear a sound downstairs",
2672 | "It's just a cat",
2673 | "You don't have a cat"
2674 | ],
2675 | "url": "https://api.memegen.link/images/panik-kalm-panik/You_hear_a_sound_downstairs/It's_just_a_cat/You_don't_have_a_cat.jpg"
2676 | },
2677 | "source": "https://knowyourmeme.com/memes/panik-kalm",
2678 | "keywords": [],
2679 | "_self": "https://api.memegen.link/templates/panik-kalm-panik"
2680 | },
2681 | {
2682 | "id": "patrick",
2683 | "name": "Push it somewhere else Patrick",
2684 | "lines": 2,
2685 | "overlays": 2,
2686 | "styles": [
2687 | "animated",
2688 | "default"
2689 | ],
2690 | "blank": "https://api.memegen.link/images/patrick.jpg",
2691 | "example": {
2692 | "text": [
2693 | "why don't we take all the memes",
2694 | "and put them on memegen"
2695 | ],
2696 | "url": "https://api.memegen.link/images/patrick/why_don't_we_take_all_the_memes/and_put_them_on_memegen.webp"
2697 | },
2698 | "source": "http://knowyourmeme.com/memes/push-it-somewhere-else-patrick",
2699 | "keywords": [],
2700 | "_self": "https://api.memegen.link/templates/patrick"
2701 | },
2702 | {
2703 | "id": "perfection",
2704 | "name": "Perfection",
2705 | "lines": 6,
2706 | "overlays": 3,
2707 | "styles": [
2708 | "default"
2709 | ],
2710 | "blank": "https://api.memegen.link/images/perfection.jpg",
2711 | "example": {
2712 | "text": [
2713 | "Sebastian Shaw",
2714 | "I prefer the real Darth Vader.",
2715 | "Hayden Christensen",
2716 | "I said, the real Darth Vader.",
2717 | "Jake Lloyd",
2718 | "Perfection."
2719 | ],
2720 | "url": "https://api.memegen.link/images/perfection/Sebastian_Shaw/I_prefer_the_real_Darth_Vader./Hayden_Christensen/I_said,_the_real_Darth_Vader./Jake_Lloyd/Perfection..jpg"
2721 | },
2722 | "source": "https://knowyourmeme.com/memes/perfection",
2723 | "keywords": [
2724 | "I Prefer the Real Raven"
2725 | ],
2726 | "_self": "https://api.memegen.link/templates/perfection"
2727 | },
2728 | {
2729 | "id": "persian",
2730 | "name": "Persian Cat Room Guardian",
2731 | "lines": 2,
2732 | "overlays": 0,
2733 | "styles": [],
2734 | "blank": "https://api.memegen.link/images/persian.jpg",
2735 | "example": {
2736 | "text": [
2737 | "when you wake up from a nap",
2738 | "and your mom starts yelling at you"
2739 | ],
2740 | "url": "https://api.memegen.link/images/persian/when_you_wake_up_from_a_nap/and_your_mom_starts_yelling_at_you.jpg"
2741 | },
2742 | "source": "https://knowyourmeme.com/memes/persian-cat-room-guardian",
2743 | "keywords": [],
2744 | "_self": "https://api.memegen.link/templates/persian"
2745 | },
2746 | {
2747 | "id": "philosoraptor",
2748 | "name": "Philosoraptor",
2749 | "lines": 2,
2750 | "overlays": 0,
2751 | "styles": [],
2752 | "blank": "https://api.memegen.link/images/philosoraptor.jpg",
2753 | "example": {
2754 | "text": [
2755 | "if the earth is the third planet from the sun",
2756 | "then isn't every country a third world country?"
2757 | ],
2758 | "url": "https://api.memegen.link/images/philosoraptor/if_the_earth_is_the_third_planet_from_the_sun/then_isn't_every_country_a_third_world_country~q.jpg"
2759 | },
2760 | "source": "http://knowyourmeme.com/memes/philosoraptor",
2761 | "keywords": [],
2762 | "_self": "https://api.memegen.link/templates/philosoraptor"
2763 | },
2764 | {
2765 | "id": "pigeon",
2766 | "name": "Is This a Pigeon?",
2767 | "lines": 3,
2768 | "overlays": 1,
2769 | "styles": [
2770 | "default"
2771 | ],
2772 | "blank": "https://api.memegen.link/images/pigeon.jpg",
2773 | "example": {
2774 | "text": [
2775 | "Engineer",
2776 | "PowerPoint",
2777 | "Is this Photoshop?"
2778 | ],
2779 | "url": "https://api.memegen.link/images/pigeon/Engineer/PowerPoint/Is_this_Photoshop~q.jpg"
2780 | },
2781 | "source": "https://knowyourmeme.com/memes/is-this-a-pigeon",
2782 | "keywords": [],
2783 | "_self": "https://api.memegen.link/templates/pigeon"
2784 | },
2785 | {
2786 | "id": "pooh",
2787 | "name": "Tuxedo Winnie the Pooh",
2788 | "lines": 2,
2789 | "overlays": 2,
2790 | "styles": [
2791 | "default"
2792 | ],
2793 | "blank": "https://api.memegen.link/images/pooh.jpg",
2794 | "example": {
2795 | "text": [
2796 | "Burger King",
2797 | "The Monarch of Hamburg"
2798 | ],
2799 | "url": "https://api.memegen.link/images/pooh/Burger_King/The_Monarch_of_Hamburg.jpg"
2800 | },
2801 | "source": "https://knowyourmeme.com/memes/tuxedo-winnie-the-pooh",
2802 | "keywords": [],
2803 | "_self": "https://api.memegen.link/templates/pooh"
2804 | },
2805 | {
2806 | "id": "pool",
2807 | "name": "Mother Ignoring Kid Drowning In A Pool",
2808 | "lines": 3,
2809 | "overlays": 3,
2810 | "styles": [
2811 | "default"
2812 | ],
2813 | "blank": "https://api.memegen.link/images/pool.jpg",
2814 | "example": {
2815 | "text": [
2816 | "Posts in Hot",
2817 | "Posts in New",
2818 | "Redditors"
2819 | ],
2820 | "url": "https://api.memegen.link/images/pool/Posts_in_Hot/Posts_in_New/Redditors.jpg"
2821 | },
2822 | "source": "https://knowyourmeme.com/memes/mother-ignoring-kid-drowning-in-a-pool",
2823 | "keywords": [
2824 | "my cousins learning to swim"
2825 | ],
2826 | "_self": "https://api.memegen.link/templates/pool"
2827 | },
2828 | {
2829 | "id": "prop3",
2830 | "name": "Too Confusing, Too Extreme",
2831 | "lines": 1,
2832 | "overlays": 0,
2833 | "styles": [],
2834 | "blank": "https://api.memegen.link/images/prop3.jpg",
2835 | "example": {
2836 | "text": [
2837 | "Zipper Merging"
2838 | ],
2839 | "url": "https://api.memegen.link/images/prop3/Zipper_Merging.jpg"
2840 | },
2841 | "source": "https://wfgr.com/too-extreme-state-political-catch-phrase-gets-roasted-online/",
2842 | "keywords": [
2843 | "Michigan Proposal 3"
2844 | ],
2845 | "_self": "https://api.memegen.link/templates/prop3"
2846 | },
2847 | {
2848 | "id": "ptj",
2849 | "name": "Phoebe Teaching Joey",
2850 | "lines": 8,
2851 | "overlays": 0,
2852 | "styles": [],
2853 | "blank": "https://api.memegen.link/images/ptj.jpg",
2854 | "example": {
2855 | "text": [
2856 | "Cast it",
2857 | "Cast it",
2858 | "into",
2859 | "into",
2860 | "the fire",
2861 | "the fire",
2862 | "Cast it into the fire.",
2863 | "Keep the Ring of Power!"
2864 | ],
2865 | "url": "https://api.memegen.link/images/ptj/Cast_it/Cast_it/into/into/the_fire/the_fire/Cast_it_into_the_fire./Keep_the_Ring_of_Power!.jpg"
2866 | },
2867 | "source": "https://knowyourmeme.com/photos/1846826-phoebe-teaching-joey",
2868 | "keywords": [],
2869 | "_self": "https://api.memegen.link/templates/ptj"
2870 | },
2871 | {
2872 | "id": "puffin",
2873 | "name": "Unpopular opinion puffin",
2874 | "lines": 2,
2875 | "overlays": 0,
2876 | "styles": [],
2877 | "blank": "https://api.memegen.link/images/puffin.jpg",
2878 | "example": {
2879 | "text": [
2880 | "I don't find Mitch Hedberg",
2881 | "all the funny"
2882 | ],
2883 | "url": "https://api.memegen.link/images/puffin/I_don't_find_Mitch_Hedberg/all_the_funny.jpg"
2884 | },
2885 | "source": "http://knowyourmeme.com/memes/unpopular-opinion-puffin",
2886 | "keywords": [],
2887 | "_self": "https://api.memegen.link/templates/puffin"
2888 | },
2889 | {
2890 | "id": "red",
2891 | "name": "Oh, Is That What We're Going to Do Today?",
2892 | "lines": 2,
2893 | "overlays": 0,
2894 | "styles": [],
2895 | "blank": "https://api.memegen.link/images/red.jpg",
2896 | "example": {
2897 | "text": [
2898 | "oh, is that what we're going to do today?",
2899 | "we're going to fight?"
2900 | ],
2901 | "url": "https://api.memegen.link/images/red/oh,_is_that_what_we're_going_to_do_today~q/we're_going_to_fight~q.jpg"
2902 | },
2903 | "source": "https://www.imdb.com/title/tt0720046/",
2904 | "keywords": [],
2905 | "_self": "https://api.memegen.link/templates/red"
2906 | },
2907 | {
2908 | "id": "regret",
2909 | "name": "I Immediately Regret This Decision!",
2910 | "lines": 2,
2911 | "overlays": 0,
2912 | "styles": [],
2913 | "blank": "https://api.memegen.link/images/regret.jpg",
2914 | "example": {
2915 | "text": [
2916 | "",
2917 | "i immediately regret this decision"
2918 | ],
2919 | "url": "https://api.memegen.link/images/regret/_/i_immediately_regret_this_decision.jpg"
2920 | },
2921 | "source": "https://www.youtube.com/watch?v=gd9ltJGykYc",
2922 | "keywords": [],
2923 | "_self": "https://api.memegen.link/templates/regret"
2924 | },
2925 | {
2926 | "id": "remembers",
2927 | "name": "Pepperidge Farm Remembers",
2928 | "lines": 2,
2929 | "overlays": 1,
2930 | "styles": [
2931 | "default"
2932 | ],
2933 | "blank": "https://api.memegen.link/images/remembers.jpg",
2934 | "example": {
2935 | "text": [
2936 | "remember this meme?",
2937 | "pepperidge farm remembers"
2938 | ],
2939 | "url": "https://api.memegen.link/images/remembers/remember_this_meme~q/pepperidge_farm_remembers.jpg"
2940 | },
2941 | "source": "http://knowyourmeme.com/memes/pepperidge-farm-remembers",
2942 | "keywords": [],
2943 | "_self": "https://api.memegen.link/templates/remembers"
2944 | },
2945 | {
2946 | "id": "reveal",
2947 | "name": "Scooby Doo Reveal",
2948 | "lines": 4,
2949 | "overlays": 2,
2950 | "styles": [
2951 | "default"
2952 | ],
2953 | "blank": "https://api.memegen.link/images/reveal.jpg",
2954 | "example": {
2955 | "text": [
2956 | "Villain",
2957 | "Let's see who you really are...",
2958 | "Protagonist",
2959 | "I knew it!"
2960 | ],
2961 | "url": "https://api.memegen.link/images/reveal/Villain/Let's_see_who_you_really_are.../Protagonist/I_knew_it!.jpg"
2962 | },
2963 | "source": "https://knowyourmeme.com/memes/lets-see-who-this-really-is",
2964 | "keywords": [],
2965 | "_self": "https://api.memegen.link/templates/reveal"
2966 | },
2967 | {
2968 | "id": "right",
2969 | "name": "Anakin and Padme Change the World For the Better",
2970 | "lines": 5,
2971 | "overlays": 0,
2972 | "styles": [],
2973 | "blank": "https://api.memegen.link/images/right.jpg",
2974 | "example": {
2975 | "text": [
2976 | "Senior Developer",
2977 | "Junior Developer",
2978 | "Put it in the backlog.",
2979 | "So we can fix it later, right?",
2980 | "So we can fix it later, right?"
2981 | ],
2982 | "url": "https://api.memegen.link/images/right/Senior_Developer/Junior_Developer/Put_it_in_the_backlog./So_we_can_fix_it_later,_right~q/So_we_can_fix_it_later,_right~q.jpg"
2983 | },
2984 | "source": "https://www.reddit.com/r/MemeTemplatesOfficial/comments/nia6wu/im_going_to_change_the_world_for_the_better_right/",
2985 | "keywords": [],
2986 | "_self": "https://api.memegen.link/templates/right"
2987 | },
2988 | {
2989 | "id": "rollsafe",
2990 | "name": "Roll Safe",
2991 | "lines": 2,
2992 | "overlays": 1,
2993 | "styles": [
2994 | "animated",
2995 | "config.61caca6063a240cf99d74abda35b148557f37998",
2996 | "default",
2997 | "default.top",
2998 | "default.top.top"
2999 | ],
3000 | "blank": "https://api.memegen.link/images/rollsafe.jpg",
3001 | "example": {
3002 | "text": [
3003 | "can't get fired",
3004 | "if you don't have a job"
3005 | ],
3006 | "url": "https://api.memegen.link/images/rollsafe/can't_get_fired/if_you_don't_have_a_job.webp"
3007 | },
3008 | "source": "http://knowyourmeme.com/memes/roll-safe",
3009 | "keywords": [],
3010 | "_self": "https://api.memegen.link/templates/rollsafe"
3011 | },
3012 | {
3013 | "id": "sad-biden",
3014 | "name": "Sad Joe Biden",
3015 | "lines": 2,
3016 | "overlays": 1,
3017 | "styles": [
3018 | "default",
3019 | "down",
3020 | "scowl",
3021 | "window"
3022 | ],
3023 | "blank": "https://api.memegen.link/images/sad-biden.jpg",
3024 | "example": {
3025 | "text": [
3026 | "sad joe biden",
3027 | "doesn't think you'll vote"
3028 | ],
3029 | "url": "https://api.memegen.link/images/sad-biden/sad_joe_biden/doesn't_think_you'll_vote.jpg"
3030 | },
3031 | "source": "http://knowyourmeme.com/memes/sad-joe-biden",
3032 | "keywords": [],
3033 | "_self": "https://api.memegen.link/templates/sad-biden"
3034 | },
3035 | {
3036 | "id": "sad-boehner",
3037 | "name": "Sad John Boehner",
3038 | "lines": 2,
3039 | "overlays": 1,
3040 | "styles": [
3041 | "default",
3042 | "frown",
3043 | "really",
3044 | "sad",
3045 | "what"
3046 | ],
3047 | "blank": "https://api.memegen.link/images/sad-boehner.jpg",
3048 | "example": {
3049 | "text": [
3050 | "sad john boehner",
3051 | "doesn't think you'll vote"
3052 | ],
3053 | "url": "https://api.memegen.link/images/sad-boehner/sad_john_boehner/doesn't_think_you'll_vote.jpg"
3054 | },
3055 | "source": "https://en.wikipedia.org/wiki/John_Boehner",
3056 | "keywords": [],
3057 | "_self": "https://api.memegen.link/templates/sad-boehner"
3058 | },
3059 | {
3060 | "id": "sad-bush",
3061 | "name": "Sad George Bush",
3062 | "lines": 2,
3063 | "overlays": 1,
3064 | "styles": [
3065 | "default",
3066 | "facebook",
3067 | "nervous",
3068 | "unsure",
3069 | "upset"
3070 | ],
3071 | "blank": "https://api.memegen.link/images/sad-bush.jpg",
3072 | "example": {
3073 | "text": [
3074 | "sad george bush",
3075 | "doesn't think you'll vote"
3076 | ],
3077 | "url": "https://api.memegen.link/images/sad-bush/sad_george_bush/doesn't_think_you'll_vote.jpg"
3078 | },
3079 | "source": "http://knowyourmeme.com/memes/sad-joe-biden",
3080 | "keywords": [],
3081 | "_self": "https://api.memegen.link/templates/sad-bush"
3082 | },
3083 | {
3084 | "id": "sad-clinton",
3085 | "name": "Sad Bill Clinton",
3086 | "lines": 2,
3087 | "overlays": 1,
3088 | "styles": [
3089 | "ashamed",
3090 | "default",
3091 | "frown",
3092 | "nervous",
3093 | "sad"
3094 | ],
3095 | "blank": "https://api.memegen.link/images/sad-clinton.jpg",
3096 | "example": {
3097 | "text": [
3098 | "sad bill clinton",
3099 | "doesn't think you'll vote"
3100 | ],
3101 | "url": "https://api.memegen.link/images/sad-clinton/sad_bill_clinton/doesn't_think_you'll_vote.jpg"
3102 | },
3103 | "source": "https://en.wikipedia.org/wiki/Bill_Clinton",
3104 | "keywords": [],
3105 | "_self": "https://api.memegen.link/templates/sad-clinton"
3106 | },
3107 | {
3108 | "id": "sad-obama",
3109 | "name": "Sad Barack Obama",
3110 | "lines": 2,
3111 | "overlays": 1,
3112 | "styles": [
3113 | "bow",
3114 | "default",
3115 | "down",
3116 | "frown",
3117 | "mad",
3118 | "really"
3119 | ],
3120 | "blank": "https://api.memegen.link/images/sad-obama.jpg",
3121 | "example": {
3122 | "text": [
3123 | "sad barack obama",
3124 | "doesn't think you'll vote"
3125 | ],
3126 | "url": "https://api.memegen.link/images/sad-obama/sad_barack_obama/doesn't_think_you'll_vote.jpg"
3127 | },
3128 | "source": "http://knowyourmeme.com/memes/sad-joe-biden",
3129 | "keywords": [],
3130 | "_self": "https://api.memegen.link/templates/sad-obama"
3131 | },
3132 | {
3133 | "id": "sadfrog",
3134 | "name": "Feels Bad Man",
3135 | "lines": 2,
3136 | "overlays": 0,
3137 | "styles": [],
3138 | "blank": "https://api.memegen.link/images/sadfrog.jpg",
3139 | "example": {
3140 | "text": [
3141 | "",
3142 | "feels bad man"
3143 | ],
3144 | "url": "https://api.memegen.link/images/sadfrog/_/feels_bad_man.jpg"
3145 | },
3146 | "source": "http://knowyourmeme.com/memes/feels-bad-man-sad-frog",
3147 | "keywords": [
3148 | "Sad Frog"
3149 | ],
3150 | "_self": "https://api.memegen.link/templates/sadfrog"
3151 | },
3152 | {
3153 | "id": "saltbae",
3154 | "name": "Salt Bae",
3155 | "lines": 2,
3156 | "overlays": 0,
3157 | "styles": [],
3158 | "blank": "https://api.memegen.link/images/saltbae.jpg",
3159 | "example": {
3160 | "text": [
3161 | "",
3162 | "pours salt on it"
3163 | ],
3164 | "url": "https://api.memegen.link/images/saltbae/_/pours_salt_on_it.jpg"
3165 | },
3166 | "source": "http://knowyourmeme.com/memes/saltbae",
3167 | "keywords": [],
3168 | "_self": "https://api.memegen.link/templates/saltbae"
3169 | },
3170 | {
3171 | "id": "same",
3172 | "name": "They're The Same Picture",
3173 | "lines": 3,
3174 | "overlays": 3,
3175 | "styles": [
3176 | "default"
3177 | ],
3178 | "blank": "https://api.memegen.link/images/same.jpg",
3179 | "example": {
3180 | "text": [
3181 | "\u03c0",
3182 | "3",
3183 | "The Bible"
3184 | ],
3185 | "url": "https://api.memegen.link/images/same/\u03c0/3/The_Bible.jpg"
3186 | },
3187 | "source": "https://knowyourmeme.com/memes/theyre-the-same-picture",
3188 | "keywords": [],
3189 | "_self": "https://api.memegen.link/templates/same"
3190 | },
3191 | {
3192 | "id": "sarcasticbear",
3193 | "name": "Sarcastic Bear",
3194 | "lines": 2,
3195 | "overlays": 0,
3196 | "styles": [],
3197 | "blank": "https://api.memegen.link/images/sarcasticbear.jpg",
3198 | "example": {
3199 | "text": [
3200 | "i'm so sorry",
3201 | "i haven't memorized the internet"
3202 | ],
3203 | "url": "https://api.memegen.link/images/sarcasticbear/i'm_so_sorry/i_haven't_memorized_the_internet.jpg"
3204 | },
3205 | "source": "http://knowyourmeme.com/memes/sarcastic-bear",
3206 | "keywords": [],
3207 | "_self": "https://api.memegen.link/templates/sarcasticbear"
3208 | },
3209 | {
3210 | "id": "say",
3211 | "name": "Say the Line, Bart!",
3212 | "lines": 2,
3213 | "overlays": 1,
3214 | "styles": [
3215 | "default"
3216 | ],
3217 | "blank": "https://api.memegen.link/images/say.jpg",
3218 | "example": {
3219 | "text": [
3220 | "Say the line, Senior Engineer!",
3221 | "It depends."
3222 | ],
3223 | "url": "https://api.memegen.link/images/say/Say_the_line,_Senior_Engineer!/It_depends..jpg"
3224 | },
3225 | "source": "https://knowyourmeme.com/memes/say-the-line-bart",
3226 | "keywords": [
3227 | "The Simpsons",
3228 | "Bart Simpson"
3229 | ],
3230 | "_self": "https://api.memegen.link/templates/say"
3231 | },
3232 | {
3233 | "id": "sb",
3234 | "name": "Scumbag Brain",
3235 | "lines": 2,
3236 | "overlays": 0,
3237 | "styles": [],
3238 | "blank": "https://api.memegen.link/images/sb.jpg",
3239 | "example": {
3240 | "text": [
3241 | "remembers the face",
3242 | "but not the name"
3243 | ],
3244 | "url": "https://api.memegen.link/images/sb/remembers_the_face/but_not_the_name.jpg"
3245 | },
3246 | "source": "http://knowyourmeme.com/memes/scumbag-brain",
3247 | "keywords": [],
3248 | "_self": "https://api.memegen.link/templates/sb"
3249 | },
3250 | {
3251 | "id": "scc",
3252 | "name": "Sudden Clarity Clarence",
3253 | "lines": 2,
3254 | "overlays": 0,
3255 | "styles": [],
3256 | "blank": "https://api.memegen.link/images/scc.jpg",
3257 | "example": {
3258 | "text": [
3259 | "oh my god",
3260 | "those weren't listerine breath strips"
3261 | ],
3262 | "url": "https://api.memegen.link/images/scc/oh_my_god/those_weren't_listerine_breath_strips.jpg"
3263 | },
3264 | "source": "http://knowyourmeme.com/memes/sudden-clarity-clarence",
3265 | "keywords": [],
3266 | "_self": "https://api.memegen.link/templates/scc"
3267 | },
3268 | {
3269 | "id": "seagull",
3270 | "name": "Inhaling Seagull",
3271 | "lines": 2,
3272 | "overlays": 0,
3273 | "styles": [],
3274 | "blank": "https://api.memegen.link/images/seagull.jpg",
3275 | "example": {
3276 | "text": [
3277 | "some",
3278 | "BODY ONCE TOLD ME THE THE WORLD WAS GONNA ROLL ME!!"
3279 | ],
3280 | "url": "https://api.memegen.link/images/seagull/some/BODY_ONCE_TOLD_ME_THE_THE_WORLD_WAS_GONNA_ROLL_ME!!.jpg"
3281 | },
3282 | "source": "https://knowyourmeme.com/memes/inhaling-seagull",
3283 | "keywords": [],
3284 | "_self": "https://api.memegen.link/templates/seagull"
3285 | },
3286 | {
3287 | "id": "sf",
3288 | "name": "Sealed Fate",
3289 | "lines": 2,
3290 | "overlays": 0,
3291 | "styles": [],
3292 | "blank": "https://api.memegen.link/images/sf.jpg",
3293 | "example": {
3294 | "text": [
3295 | "i accidentally used a swear word",
3296 | "and i know my mom heard it from the other room"
3297 | ],
3298 | "url": "https://api.memegen.link/images/sf/i_accidentally_used_a_swear_word/and_i_know_my_mom_heard_it_from_the_other_room.jpg"
3299 | },
3300 | "source": "https://www.reddit.com/r/AdviceAnimals/comments/3fenos/i_like_the_idea_of_the_impending_doom_seal_i_hope/ctnxw3k",
3301 | "keywords": [],
3302 | "_self": "https://api.memegen.link/templates/sf"
3303 | },
3304 | {
3305 | "id": "sk",
3306 | "name": "Skeptical Third World Kid",
3307 | "lines": 2,
3308 | "overlays": 0,
3309 | "styles": [],
3310 | "blank": "https://api.memegen.link/images/sk.jpg",
3311 | "example": {
3312 | "text": [
3313 | "you finished your plate",
3314 | "because i was starving?"
3315 | ],
3316 | "url": "https://api.memegen.link/images/sk/you_finished_your_plate/because_i_was_starving~q.jpg"
3317 | },
3318 | "source": "http://knowyourmeme.com/memes/third-world-success",
3319 | "keywords": [],
3320 | "_self": "https://api.memegen.link/templates/sk"
3321 | },
3322 | {
3323 | "id": "ski",
3324 | "name": "Super Cool Ski Instructor",
3325 | "lines": 2,
3326 | "overlays": 0,
3327 | "styles": [],
3328 | "blank": "https://api.memegen.link/images/ski.jpg",
3329 | "example": {
3330 | "text": [
3331 | "",
3332 | "you're gonna have a bad time"
3333 | ],
3334 | "url": "https://api.memegen.link/images/ski/_/you're_gonna_have_a_bad_time.jpg"
3335 | },
3336 | "source": "http://knowyourmeme.com/memes/super-cool-ski-instructor",
3337 | "keywords": [],
3338 | "_self": "https://api.memegen.link/templates/ski"
3339 | },
3340 | {
3341 | "id": "slap",
3342 | "name": "Will Smith Slapping Chris Rock",
3343 | "lines": 2,
3344 | "overlays": 2,
3345 | "styles": [
3346 | "default"
3347 | ],
3348 | "blank": "https://api.memegen.link/images/slap.jpg",
3349 | "example": {
3350 | "text": [
3351 | "Me Trying to Enjoy the Weekend",
3352 | "Monday"
3353 | ],
3354 | "url": "https://api.memegen.link/images/slap/Me_Trying_to_Enjoy_the_Weekend/Monday.jpg"
3355 | },
3356 | "source": "https://knowyourmeme.com/memes/will-smith-slapping-chris-rock",
3357 | "keywords": [],
3358 | "_self": "https://api.memegen.link/templates/slap"
3359 | },
3360 | {
3361 | "id": "snek",
3362 | "name": "Skeptical Snake",
3363 | "lines": 2,
3364 | "overlays": 0,
3365 | "styles": [],
3366 | "blank": "https://api.memegen.link/images/snek.jpg",
3367 | "example": {
3368 | "text": [
3369 | "when you already checked that one leaf",
3370 | "and it starts moving"
3371 | ],
3372 | "url": "https://api.memegen.link/images/snek/when_you_already_checked_that_one_leaf/and_it_starts_moving.jpg"
3373 | },
3374 | "source": "https://www.reddit.com/r/JoeRogan/comments/5kga5k/skeptical_snake/",
3375 | "keywords": [],
3376 | "_self": "https://api.memegen.link/templates/snek"
3377 | },
3378 | {
3379 | "id": "soa",
3380 | "name": "Seal of Approval",
3381 | "lines": 2,
3382 | "overlays": 0,
3383 | "styles": [],
3384 | "blank": "https://api.memegen.link/images/soa.jpg",
3385 | "example": {
3386 | "text": [
3387 | "first wipe",
3388 | "clean toiletpaper"
3389 | ],
3390 | "url": "https://api.memegen.link/images/soa/first_wipe/clean_toiletpaper.jpg"
3391 | },
3392 | "source": "http://knowyourmeme.com/memes/seal-of-approval",
3393 | "keywords": [],
3394 | "_self": "https://api.memegen.link/templates/soa"
3395 | },
3396 | {
3397 | "id": "sohappy",
3398 | "name": "I Would Be So Happy",
3399 | "lines": 2,
3400 | "overlays": 0,
3401 | "styles": [],
3402 | "blank": "https://api.memegen.link/images/sohappy.jpg",
3403 | "example": {
3404 | "text": [
3405 | "if i could use this meme",
3406 | "i would be so happy"
3407 | ],
3408 | "url": "https://api.memegen.link/images/sohappy/if_i_could_use_this_meme/i_would_be_so_happy.jpg"
3409 | },
3410 | "source": "https://www.youtube.com/watch?v=z_17RHGKNTY",
3411 | "keywords": [],
3412 | "_self": "https://api.memegen.link/templates/sohappy"
3413 | },
3414 | {
3415 | "id": "sohot",
3416 | "name": "So Hot Right Now",
3417 | "lines": 2,
3418 | "overlays": 0,
3419 | "styles": [],
3420 | "blank": "https://api.memegen.link/images/sohot.jpg",
3421 | "example": {
3422 | "text": [
3423 | "this meme is",
3424 | "so hot right now"
3425 | ],
3426 | "url": "https://api.memegen.link/images/sohot/this_meme_is/so_hot_right_now.jpg"
3427 | },
3428 | "source": "https://www.youtube.com/watch?v=QizsJQNIKhc",
3429 | "keywords": [],
3430 | "_self": "https://api.memegen.link/templates/sohot"
3431 | },
3432 | {
3433 | "id": "soup-nazi",
3434 | "name": "No Soup for You",
3435 | "lines": 2,
3436 | "overlays": 0,
3437 | "styles": [],
3438 | "blank": "https://api.memegen.link/images/soup-nazi.jpg",
3439 | "example": {
3440 | "text": [
3441 | "no soup for you!"
3442 | ],
3443 | "url": "https://api.memegen.link/images/soup-nazi/no_soup_for_you!.jpg"
3444 | },
3445 | "source": "https://knowyourmeme.com/memes/no-soup-for-you-soup-nazi",
3446 | "keywords": [
3447 | "Seinfeld",
3448 | "Soup Nazi"
3449 | ],
3450 | "_self": "https://api.memegen.link/templates/soup-nazi"
3451 | },
3452 | {
3453 | "id": "sparta",
3454 | "name": "This is Sparta!",
3455 | "lines": 2,
3456 | "overlays": 0,
3457 | "styles": [],
3458 | "blank": "https://api.memegen.link/images/sparta.jpg",
3459 | "example": {
3460 | "text": [
3461 | "this. is.",
3462 | "sparta!"
3463 | ],
3464 | "url": "https://api.memegen.link/images/sparta/this._is./sparta!.jpg"
3465 | },
3466 | "source": "https://www.youtube.com/watch?v=QkWS9PiXekE",
3467 | "keywords": [],
3468 | "_self": "https://api.memegen.link/templates/sparta"
3469 | },
3470 | {
3471 | "id": "spiderman",
3472 | "name": "Spider-Man Pointing at Spider-Man",
3473 | "lines": 2,
3474 | "overlays": 0,
3475 | "styles": [],
3476 | "blank": "https://api.memegen.link/images/spiderman.jpg",
3477 | "example": {
3478 | "text": [
3479 | "me pointing at you",
3480 | "you pointing at me"
3481 | ],
3482 | "url": "https://api.memegen.link/images/spiderman/me_pointing_at_you/you_pointing_at_me.jpg"
3483 | },
3484 | "source": "https://knowyourmeme.com/memes/spider-man-pointing-at-spider-man",
3485 | "keywords": [],
3486 | "_self": "https://api.memegen.link/templates/spiderman"
3487 | },
3488 | {
3489 | "id": "spirit",
3490 | "name": "Fake Spirit Halloween Costume",
3491 | "lines": 5,
3492 | "overlays": 1,
3493 | "styles": [
3494 | "default"
3495 | ],
3496 | "blank": "https://api.memegen.link/images/spirit.jpg",
3497 | "example": {
3498 | "text": [
3499 | "My Dad",
3500 | "Includes:",
3501 | "- Nothing",
3502 | "- Nothing",
3503 | "- Nothing"
3504 | ],
3505 | "url": "https://api.memegen.link/images/spirit/My_Dad/Includes:/--_Nothing/--_Nothing/--_Nothing.jpg"
3506 | },
3507 | "source": "https://knowyourmeme.com/photos/2466845-fake-spirit-halloween-costumes",
3508 | "keywords": [
3509 | "adult size costume"
3510 | ],
3511 | "_self": "https://api.memegen.link/templates/spirit"
3512 | },
3513 | {
3514 | "id": "spongebob",
3515 | "name": "Mocking Spongebob",
3516 | "lines": 2,
3517 | "overlays": 0,
3518 | "styles": [],
3519 | "blank": "https://api.memegen.link/images/spongebob.jpg",
3520 | "example": {
3521 | "text": [
3522 | "BF: I don't even know her like that",
3523 | "Me: i DoN'T eVeN KnOw HeR lIkE tHaT"
3524 | ],
3525 | "url": "https://api.memegen.link/images/spongebob/BF:_I_don't_even_know_her_like_that/Me:_i_DoN'T_eVeN_KnOw_HeR_lIkE_tHaT.jpg"
3526 | },
3527 | "source": "http://knowyourmeme.com/memes/mocking-spongebob",
3528 | "keywords": [],
3529 | "_self": "https://api.memegen.link/templates/spongebob"
3530 | },
3531 | {
3532 | "id": "ss",
3533 | "name": "Scumbag Steve",
3534 | "lines": 2,
3535 | "overlays": 0,
3536 | "styles": [],
3537 | "blank": "https://api.memegen.link/images/ss.jpg",
3538 | "example": {
3539 | "text": [
3540 | "needs a place to crash",
3541 | "never leaves"
3542 | ],
3543 | "url": "https://api.memegen.link/images/ss/needs_a_place_to_crash/never_leaves.jpg"
3544 | },
3545 | "source": "http://knowyourmeme.com/memes/scumbag-steve",
3546 | "keywords": [],
3547 | "_self": "https://api.memegen.link/templates/ss"
3548 | },
3549 | {
3550 | "id": "stew",
3551 | "name": "Baby, You've Got a Stew Going",
3552 | "lines": 2,
3553 | "overlays": 0,
3554 | "styles": [],
3555 | "blank": "https://api.memegen.link/images/stew.jpg",
3556 | "example": {
3557 | "text": [
3558 | "",
3559 | "baby, you've got a stew going!"
3560 | ],
3561 | "url": "https://api.memegen.link/images/stew/_/baby,_you've_got_a_stew_going!.jpg"
3562 | },
3563 | "source": "https://www.youtube.com/watch?v=Sr2PlqXw03Y",
3564 | "keywords": [],
3565 | "_self": "https://api.memegen.link/templates/stew"
3566 | },
3567 | {
3568 | "id": "stonks",
3569 | "name": "Stonks",
3570 | "lines": 2,
3571 | "overlays": 0,
3572 | "styles": [],
3573 | "blank": "https://api.memegen.link/images/stonks.jpg",
3574 | "example": {
3575 | "text": [
3576 | "",
3577 | "stonks"
3578 | ],
3579 | "url": "https://api.memegen.link/images/stonks/_/stonks.jpg"
3580 | },
3581 | "source": "https://knowyourmeme.com/memes/stonks",
3582 | "keywords": [],
3583 | "_self": "https://api.memegen.link/templates/stonks"
3584 | },
3585 | {
3586 | "id": "stop",
3587 | "name": "Stop It Patrick You're Scaring Him",
3588 | "lines": 6,
3589 | "overlays": 0,
3590 | "styles": [],
3591 | "blank": "https://api.memegen.link/images/stop.jpg",
3592 | "example": {
3593 | "text": [
3594 | "I'm claustrophobic.",
3595 | "What does \"claustrophobic\" mean?",
3596 | "It means he's afraid of Santa Claus.",
3597 | "No, it doesn't.",
3598 | "HO-HO-HO",
3599 | "Stop it, Patrick, you're scaring him!"
3600 | ],
3601 | "url": "https://api.memegen.link/images/stop/I'm_claustrophobic./What_does_''claustrophobic''_mean~q/It_means_he's_afraid_of_Santa_Claus./No,_it_doesn't./HO--HO--HO/Stop_it,_Patrick,_you're_scaring_him!.jpg"
3602 | },
3603 | "source": "https://knowyourmeme.com/memes/stop-it-patrick-youre-scaring-him",
3604 | "keywords": [],
3605 | "_self": "https://api.memegen.link/templates/stop"
3606 | },
3607 | {
3608 | "id": "stop-it",
3609 | "name": "Stop It, Get Some Help",
3610 | "lines": 2,
3611 | "overlays": 0,
3612 | "styles": [],
3613 | "blank": "https://api.memegen.link/images/stop-it.jpg",
3614 | "example": {
3615 | "text": [
3616 | "stop it",
3617 | "get some help"
3618 | ],
3619 | "url": "https://api.memegen.link/images/stop-it/stop_it/get_some_help.jpg"
3620 | },
3621 | "source": "https://knowyourmeme.com/memes/stop-it-get-some-help",
3622 | "keywords": [],
3623 | "_self": "https://api.memegen.link/templates/stop-it"
3624 | },
3625 | {
3626 | "id": "success",
3627 | "name": "Success Kid",
3628 | "lines": 2,
3629 | "overlays": 0,
3630 | "styles": [],
3631 | "blank": "https://api.memegen.link/images/success.jpg",
3632 | "example": {
3633 | "text": [
3634 | "don't know a question on the test",
3635 | "answer is in another question"
3636 | ],
3637 | "url": "https://api.memegen.link/images/success/don't_know_a_question_on_the_test/answer_is_in_another_question.jpg"
3638 | },
3639 | "source": "http://knowyourmeme.com/memes/success-kid-i-hate-sandcastles",
3640 | "keywords": [],
3641 | "_self": "https://api.memegen.link/templates/success"
3642 | },
3643 | {
3644 | "id": "tenguy",
3645 | "name": "10 Guy",
3646 | "lines": 2,
3647 | "overlays": 0,
3648 | "styles": [],
3649 | "blank": "https://api.memegen.link/images/tenguy.jpg",
3650 | "example": {
3651 | "text": [
3652 | "can't read the words on the menu",
3653 | "turns down the radio"
3654 | ],
3655 | "url": "https://api.memegen.link/images/tenguy/can't_read_the_words_on_the_menu/turns_down_the_radio.jpg"
3656 | },
3657 | "source": "http://knowyourmeme.com/memes/10-guy",
3658 | "keywords": [],
3659 | "_self": "https://api.memegen.link/templates/tenguy"
3660 | },
3661 | {
3662 | "id": "toohigh",
3663 | "name": "The Rent Is Too Damn High",
3664 | "lines": 2,
3665 | "overlays": 0,
3666 | "styles": [],
3667 | "blank": "https://api.memegen.link/images/toohigh.jpg",
3668 | "example": {
3669 | "text": [
3670 | "the rent is",
3671 | "too damn high"
3672 | ],
3673 | "url": "https://api.memegen.link/images/toohigh/the_rent_is/too_damn_high.jpg"
3674 | },
3675 | "source": "http://knowyourmeme.com/memes/the-rent-is-too-damn-high-jimmy-mcmillan",
3676 | "keywords": [],
3677 | "_self": "https://api.memegen.link/templates/toohigh"
3678 | },
3679 | {
3680 | "id": "touch",
3681 | "name": "Principal Skinner",
3682 | "lines": 2,
3683 | "overlays": 0,
3684 | "styles": [],
3685 | "blank": "https://api.memegen.link/images/touch.jpg",
3686 | "example": {
3687 | "text": [
3688 | "Am I so out of touch?",
3689 | "No, it's the children who are wrong."
3690 | ],
3691 | "url": "https://api.memegen.link/images/touch/Am_I_so_out_of_touch~q/No,_it's_the_children_who_are_wrong..jpg"
3692 | },
3693 | "source": "https://knowyourmeme.com/memes/am-i-out-of-touch",
3694 | "keywords": [
3695 | "Am I Out Of Touch?",
3696 | "The Simpsons"
3697 | ],
3698 | "_self": "https://api.memegen.link/templates/touch"
3699 | },
3700 | {
3701 | "id": "tried",
3702 | "name": "At Least You Tried",
3703 | "lines": 2,
3704 | "overlays": 0,
3705 | "styles": [],
3706 | "blank": "https://api.memegen.link/images/tried.jpg",
3707 | "example": {
3708 | "text": [
3709 | "at least",
3710 | "you tried"
3711 | ],
3712 | "url": "https://api.memegen.link/images/tried/at_least/you_tried.jpg"
3713 | },
3714 | "source": "http://knowyourmeme.com/memes/you-tried",
3715 | "keywords": [],
3716 | "_self": "https://api.memegen.link/templates/tried"
3717 | },
3718 | {
3719 | "id": "trump",
3720 | "name": "Donald Trump",
3721 | "lines": 2,
3722 | "overlays": 0,
3723 | "styles": [],
3724 | "blank": "https://api.memegen.link/images/trump.jpg",
3725 | "example": {
3726 | "text": [
3727 | "this is the best meme in the history of memes",
3728 | "maybe ever"
3729 | ],
3730 | "url": "https://api.memegen.link/images/trump/this_is_the_best_meme_in_the_history_of_memes/maybe_ever.jpg"
3731 | },
3732 | "source": "https://knowyourmeme.com/memes/people/donald-trump",
3733 | "keywords": [],
3734 | "_self": "https://api.memegen.link/templates/trump"
3735 | },
3736 | {
3737 | "id": "ugandanknuck",
3738 | "name": "Ugandan Knuckles",
3739 | "lines": 2,
3740 | "overlays": 0,
3741 | "styles": [],
3742 | "blank": "https://api.memegen.link/images/ugandanknuck.jpg",
3743 | "example": {
3744 | "text": [
3745 | "",
3746 | "do u know de wey?"
3747 | ],
3748 | "url": "https://api.memegen.link/images/ugandanknuck/_/do_u_know_de_wey~q.jpg"
3749 | },
3750 | "source": "http://knowyourmeme.com/memes/ugandan-knuckles",
3751 | "keywords": [],
3752 | "_self": "https://api.memegen.link/templates/ugandanknuck"
3753 | },
3754 | {
3755 | "id": "vince",
3756 | "name": "Vince McMahon Reaction",
3757 | "lines": 3,
3758 | "overlays": 3,
3759 | "styles": [
3760 | "default"
3761 | ],
3762 | "blank": "https://api.memegen.link/images/vince.jpg",
3763 | "example": {
3764 | "text": [
3765 | "2-Day Delivery",
3766 | "Overnight Shipping",
3767 | "Shopping at the Store"
3768 | ],
3769 | "url": "https://api.memegen.link/images/vince/2--Day_Delivery/Overnight_Shipping/Shopping_at_the_Store.jpg"
3770 | },
3771 | "source": "https://knowyourmeme.com/memes/vince-mcmahon-reaction",
3772 | "keywords": [],
3773 | "_self": "https://api.memegen.link/templates/vince"
3774 | },
3775 | {
3776 | "id": "wallet",
3777 | "name": "Patrick Star's Wallet",
3778 | "lines": 8,
3779 | "overlays": 1,
3780 | "styles": [
3781 | "default"
3782 | ],
3783 | "blank": "https://api.memegen.link/images/wallet.jpg",
3784 | "example": {
3785 | "text": [
3786 | "Aren't you Patrick Star?",
3787 | "Yup.",
3788 | "And this is your ID?",
3789 | "Yup.",
3790 | "I found the ID in this wallet so it must be yours.",
3791 | "That makes sense to me.",
3792 | "Then take it!",
3793 | "It's not my wallet."
3794 | ],
3795 | "url": "https://api.memegen.link/images/wallet/Aren't_you_Patrick_Star~q/Yup./And_this_is_your_ID~q/Yup./I_found_the_ID_in_this_wallet_so_it_must_be_yours./That_makes_sense_to_me./Then_take_it!/It's_not_my_wallet..jpg"
3796 | },
3797 | "source": "https://knowyourmeme.com/memes/patrick-stars-wallet",
3798 | "keywords": [],
3799 | "_self": "https://api.memegen.link/templates/wallet"
3800 | },
3801 | {
3802 | "id": "waygd",
3803 | "name": "What Are Ya Gonna Do?",
3804 | "lines": 2,
3805 | "overlays": 1,
3806 | "styles": [
3807 | "animated",
3808 | "default"
3809 | ],
3810 | "blank": "https://api.memegen.link/images/waygd.jpg",
3811 | "example": {
3812 | "text": [
3813 | "yeah...",
3814 | "what are ya gonna do?"
3815 | ],
3816 | "url": "https://api.memegen.link/images/waygd/yeah.../what_are_ya_gonna_do~q.webp"
3817 | },
3818 | "source": "https://www.youtube.com/watch?v=76URh0S7YIw",
3819 | "keywords": [],
3820 | "_self": "https://api.memegen.link/templates/waygd"
3821 | },
3822 | {
3823 | "id": "wddth",
3824 | "name": "We Don't Do That Here",
3825 | "lines": 2,
3826 | "overlays": 1,
3827 | "styles": [
3828 | "default"
3829 | ],
3830 | "blank": "https://api.memegen.link/images/wddth.jpg",
3831 | "example": {
3832 | "text": [
3833 | "when someone calls your phone without warning",
3834 | "We don't do that here."
3835 | ],
3836 | "url": "https://api.memegen.link/images/wddth/when_someone_calls_your_phone_without_warning/We_don't_do_that_here..jpg"
3837 | },
3838 | "source": "https://knowyourmeme.com/memes/we-dont-do-that-here",
3839 | "keywords": [
3840 | "Black Panther"
3841 | ],
3842 | "_self": "https://api.memegen.link/templates/wddth"
3843 | },
3844 | {
3845 | "id": "whatyear",
3846 | "name": "What Year Is It?",
3847 | "lines": 2,
3848 | "overlays": 0,
3849 | "styles": [],
3850 | "blank": "https://api.memegen.link/images/whatyear.jpg",
3851 | "example": {
3852 | "text": [
3853 | "",
3854 | "what year is it?"
3855 | ],
3856 | "url": "https://api.memegen.link/images/whatyear/_/what_year_is_it~q.jpg"
3857 | },
3858 | "source": "http://knowyourmeme.com/memes/what-year-is-it",
3859 | "keywords": [],
3860 | "_self": "https://api.memegen.link/templates/whatyear"
3861 | },
3862 | {
3863 | "id": "winter",
3864 | "name": "Winter is coming",
3865 | "lines": 2,
3866 | "overlays": 0,
3867 | "styles": [],
3868 | "blank": "https://api.memegen.link/images/winter.jpg",
3869 | "example": {
3870 | "text": [
3871 | "prepare yourself",
3872 | "winter is coming"
3873 | ],
3874 | "url": "https://api.memegen.link/images/winter/prepare_yourself/winter_is_coming.jpg"
3875 | },
3876 | "source": "http://knowyourmeme.com/memes/imminent-ned-brace-yourselves-winter-is-coming",
3877 | "keywords": [],
3878 | "_self": "https://api.memegen.link/templates/winter"
3879 | },
3880 | {
3881 | "id": "wishes",
3882 | "name": "Genie Rules",
3883 | "lines": 1,
3884 | "overlays": 1,
3885 | "styles": [
3886 | "blank",
3887 | "default"
3888 | ],
3889 | "blank": "https://api.memegen.link/images/wishes.jpg",
3890 | "example": {
3891 | "text": [
3892 | "I want to divide by zero"
3893 | ],
3894 | "url": "https://api.memegen.link/images/wishes/I_want_to_divide_by_zero.jpg"
3895 | },
3896 | "source": "https://en.meming.world/wiki/Genie_Rules",
3897 | "keywords": [
3898 | "wish",
3899 | "want"
3900 | ],
3901 | "_self": "https://api.memegen.link/templates/wishes"
3902 | },
3903 | {
3904 | "id": "wkh",
3905 | "name": "Who Killed Hannibal?",
3906 | "lines": 3,
3907 | "overlays": 0,
3908 | "styles": [],
3909 | "blank": "https://api.memegen.link/images/wkh.jpg",
3910 | "example": {
3911 | "text": [
3912 | "Twin Towers",
3913 | "George Bush",
3914 | "Why would Al-Qaeda do this?"
3915 | ],
3916 | "url": "https://api.memegen.link/images/wkh/Twin_Towers/George_Bush/Why_would_Al--Qaeda_do_this~q.jpg"
3917 | },
3918 | "source": "https://knowyourmeme.com/memes/who-killed-hannibal",
3919 | "keywords": [],
3920 | "_self": "https://api.memegen.link/templates/wkh"
3921 | },
3922 | {
3923 | "id": "woman-cat",
3924 | "name": "Woman Yelling at a Cat",
3925 | "lines": 2,
3926 | "overlays": 2,
3927 | "styles": [
3928 | "default"
3929 | ],
3930 | "blank": "https://api.memegen.link/images/woman-cat.jpg",
3931 | "example": {
3932 | "text": [
3933 | "Mom telling me how useless I am",
3934 | "12 year old me playing Minecraft"
3935 | ],
3936 | "url": "https://api.memegen.link/images/woman-cat/Mom_telling_me_how_useless_I_am/12_year_old_me_playing_Minecraft.jpg"
3937 | },
3938 | "source": "https://knowyourmeme.com/memes/woman-yelling-at-a-cat",
3939 | "keywords": [],
3940 | "_self": "https://api.memegen.link/templates/woman-cat"
3941 | },
3942 | {
3943 | "id": "wonka",
3944 | "name": "Condescending Wonka",
3945 | "lines": 2,
3946 | "overlays": 0,
3947 | "styles": [],
3948 | "blank": "https://api.memegen.link/images/wonka.jpg",
3949 | "example": {
3950 | "text": [
3951 | "oh, you just graduated?",
3952 | "you must know everything"
3953 | ],
3954 | "url": "https://api.memegen.link/images/wonka/oh,_you_just_graduated~q/you_must_know_everything.jpg"
3955 | },
3956 | "source": "http://knowyourmeme.com/memes/condescending-wonka-creepy-wonka",
3957 | "keywords": [],
3958 | "_self": "https://api.memegen.link/templates/wonka"
3959 | },
3960 | {
3961 | "id": "worst",
3962 | "name": "The Worst Day Of Your Life So Far",
3963 | "lines": 2,
3964 | "overlays": 1,
3965 | "styles": [
3966 | "default"
3967 | ],
3968 | "blank": "https://api.memegen.link/images/worst.jpg",
3969 | "example": {
3970 | "text": [
3971 | "This is the worst day of my life.",
3972 | "This is the worst day of your life so far."
3973 | ],
3974 | "url": "https://api.memegen.link/images/worst/This_is_the_worst_day_of_my_life./This_is_the_worst_day_of_your_life_so_far..jpg"
3975 | },
3976 | "source": "https://knowyourmeme.com/memes/the-worst-day-of-your-life-so-far",
3977 | "keywords": [],
3978 | "_self": "https://api.memegen.link/templates/worst"
3979 | },
3980 | {
3981 | "id": "xy",
3982 | "name": "X all the Y",
3983 | "lines": 2,
3984 | "overlays": 0,
3985 | "styles": [],
3986 | "blank": "https://api.memegen.link/images/xy.jpg",
3987 | "example": {
3988 | "text": [
3989 | "all the things!!!"
3990 | ],
3991 | "url": "https://api.memegen.link/images/xy/all_the_things!!!.jpg"
3992 | },
3993 | "source": "http://knowyourmeme.com/memes/x-all-the-y",
3994 | "keywords": [],
3995 | "_self": "https://api.memegen.link/templates/xy"
3996 | },
3997 | {
3998 | "id": "yallgot",
3999 | "name": "Y'all Got Any More of Them",
4000 | "lines": 2,
4001 | "overlays": 0,
4002 | "styles": [],
4003 | "blank": "https://api.memegen.link/images/yallgot.jpg",
4004 | "example": {
4005 | "text": [
4006 | "y'all got any more of them",
4007 | "memes"
4008 | ],
4009 | "url": "https://api.memegen.link/images/yallgot/y'all_got_any_more_of_them/memes.jpg"
4010 | },
4011 | "source": "http://knowyourmeme.com/memes/yall-got-anymore-of",
4012 | "keywords": [],
4013 | "_self": "https://api.memegen.link/templates/yallgot"
4014 | },
4015 | {
4016 | "id": "yodawg",
4017 | "name": "Xzibit Yo Dawg",
4018 | "lines": 2,
4019 | "overlays": 0,
4020 | "styles": [],
4021 | "blank": "https://api.memegen.link/images/yodawg.jpg",
4022 | "example": {
4023 | "text": [
4024 | "yo dawg",
4025 | "i heard you like memes"
4026 | ],
4027 | "url": "https://api.memegen.link/images/yodawg/yo_dawg/i_heard_you_like_memes.jpg"
4028 | },
4029 | "source": "http://knowyourmeme.com/memes/xzibit-yo-dawg",
4030 | "keywords": [],
4031 | "_self": "https://api.memegen.link/templates/yodawg"
4032 | },
4033 | {
4034 | "id": "yuno",
4035 | "name": "Y U NO Guy",
4036 | "lines": 2,
4037 | "overlays": 0,
4038 | "styles": [],
4039 | "blank": "https://api.memegen.link/images/yuno.jpg",
4040 | "example": {
4041 | "text": [
4042 | "y u no",
4043 | "use this meme!?"
4044 | ],
4045 | "url": "https://api.memegen.link/images/yuno/y_u_no/use_this_meme!~q.jpg"
4046 | },
4047 | "source": "http://knowyourmeme.com/memes/y-u-no-guy",
4048 | "keywords": [],
4049 | "_self": "https://api.memegen.link/templates/yuno"
4050 | },
4051 | {
4052 | "id": "zero-wing",
4053 | "name": "All Your Base Are Belong to Us",
4054 | "lines": 1,
4055 | "overlays": 0,
4056 | "styles": [],
4057 | "blank": "https://api.memegen.link/images/zero-wing.jpg",
4058 | "example": {
4059 | "text": [
4060 | "all your base are belong to us"
4061 | ],
4062 | "url": "https://api.memegen.link/images/zero-wing/all_your_base_are_belong_to_us.jpg"
4063 | },
4064 | "source": "https://knowyourmeme.com/memes/all-your-base-are-belong-to-us",
4065 | "keywords": [],
4066 | "_self": "https://api.memegen.link/templates/zero-wing"
4067 | }
4068 | ]
4069 |
```