This is page 8 of 8. Use http://codebase.md/tuananh/hyper-mcp?lines=false&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
[
{
"id": "aag",
"name": "Ancient Aliens Guy",
"lines": 2,
"overlays": 0,
"styles": [],
"blank": "https://api.memegen.link/images/aag.jpg",
"example": {
"text": [
"",
"aliens"
],
"url": "https://api.memegen.link/images/aag/_/aliens.jpg"
},
"source": "http://knowyourmeme.com/memes/ancient-aliens",
"keywords": [
"History Channel"
],
"_self": "https://api.memegen.link/templates/aag"
},
{
"id": "ackbar",
"name": "It's A Trap!",
"lines": 2,
"overlays": 0,
"styles": [],
"blank": "https://api.memegen.link/images/ackbar.jpg",
"example": {
"text": [
"",
"it's a trap!"
],
"url": "https://api.memegen.link/images/ackbar/_/it's_a_trap!.jpg"
},
"source": "http://knowyourmeme.com/memes/its-a-trap",
"keywords": [
"Star Wards",
"Admiral Ackbar"
],
"_self": "https://api.memegen.link/templates/ackbar"
},
{
"id": "afraid",
"name": "Afraid to Ask Andy",
"lines": 2,
"overlays": 0,
"styles": [],
"blank": "https://api.memegen.link/images/afraid.jpg",
"example": {
"text": [
"i don't know what this meme is for",
"and at this point i'm too afraid to ask"
],
"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"
},
"source": "http://knowyourmeme.com/memes/afraid-to-ask-andy",
"keywords": [
"Parks and Recreation"
],
"_self": "https://api.memegen.link/templates/afraid"
},
{
"id": "agnes",
"name": "Agnes Harkness Winking",
"lines": 2,
"overlays": 0,
"styles": [],
"blank": "https://api.memegen.link/images/agnes.jpg",
"example": {
"text": [
"",
"i have read and agree to the terms and conditions"
],
"url": "https://api.memegen.link/images/agnes/_/i_have_read_and_agree_to_the_terms_and_conditions.jpg"
},
"source": "https://knowyourmeme.com/memes/agnes-harkness-winking",
"keywords": [
"WandaVision"
],
"_self": "https://api.memegen.link/templates/agnes"
},
{
"id": "aint-got-time",
"name": "Sweet Brown",
"lines": 2,
"overlays": 0,
"styles": [],
"blank": "https://api.memegen.link/images/aint-got-time.jpg",
"example": {
"text": [
"memes?",
"ain't nobody got time fo' that"
],
"url": "https://api.memegen.link/images/aint-got-time/memes~q/ain't_nobody_got_time_fo'_that.jpg"
},
"source": "https://knowyourmeme.com/memes/sweet-brown-aint-nobody-got-time-for-that",
"keywords": [
"Ain't Nobody Got Time For That"
],
"_self": "https://api.memegen.link/templates/aint-got-time"
},
{
"id": "ams",
"name": "Awkward Moment Seal",
"lines": 2,
"overlays": 0,
"styles": [],
"blank": "https://api.memegen.link/images/ams.jpg",
"example": {
"text": [
"when you're watching a movie",
"and your parents walk in at the sex scene"
],
"url": "https://api.memegen.link/images/ams/when_you're_watching_a_movie/and_your_parents_walk_in_at_the_sex_scene.jpg"
},
"source": "https://knowyourmeme.com/memes/awkward-moment-seal",
"keywords": [],
"_self": "https://api.memegen.link/templates/ams"
},
{
"id": "ants",
"name": "Do You Want Ants?",
"lines": 2,
"overlays": 0,
"styles": [],
"blank": "https://api.memegen.link/images/ants.jpg",
"example": {
"text": [
"do you want ants?",
"because that's how you get ants"
],
"url": "https://api.memegen.link/images/ants/do_you_want_ants~q/because_that's_how_you_get_ants.jpg"
},
"source": "http://knowyourmeme.com/memes/do-you-want-ants",
"keywords": [
"Archer"
],
"_self": "https://api.memegen.link/templates/ants"
},
{
"id": "apcr",
"name": "Almost Politically Correct Redneck",
"lines": 2,
"overlays": 0,
"styles": [],
"blank": "https://api.memegen.link/images/apcr.jpg",
"example": {
"text": [
"I supported my sister's abortion",
"Still would have been cool to be a dad"
],
"url": "https://api.memegen.link/images/apcr/I_supported_my_sister's_abortion/Still_would_have_been_cool_to_be_a_dad.jpg"
},
"source": "https://knowyourmeme.com/memes/almost-politically-correct-redneck",
"keywords": [],
"_self": "https://api.memegen.link/templates/apcr"
},
{
"id": "astronaut",
"name": "Always Has Been",
"lines": 4,
"overlays": 1,
"styles": [
"default"
],
"blank": "https://api.memegen.link/images/astronaut.jpg",
"example": {
"text": [
"Wait, it's round?",
"Always has been",
"Flat Earther",
"Science"
],
"url": "https://api.memegen.link/images/astronaut/Wait,_it's_round~q/Always_has_been/Flat_Earther/Science.jpg"
},
"source": "https://knowyourmeme.com/memes/wait-its-all-ohio-always-has-been",
"keywords": [],
"_self": "https://api.memegen.link/templates/astronaut"
},
{
"id": "atis",
"name": "And Then I Said",
"lines": 2,
"overlays": 0,
"styles": [],
"blank": "https://api.memegen.link/images/atis.jpg",
"example": {
"text": [
"and then i said",
"the exam will only contain what we've covered in lectures"
],
"url": "https://api.memegen.link/images/atis/and_then_i_said/the_exam_will_only_contain_what_we've_covered_in_lectures.jpg"
},
"source": "https://knowyourmeme.com/memes/and-then-i-said",
"keywords": [],
"_self": "https://api.memegen.link/templates/atis"
},
{
"id": "away",
"name": "Life... Finds a Way",
"lines": 2,
"overlays": 0,
"styles": [],
"blank": "https://api.memegen.link/images/away.jpg",
"example": {
"text": [
"life...",
"finds a way"
],
"url": "https://api.memegen.link/images/away/life.../finds_a_way.jpg"
},
"source": "https://www.youtube.com/watch?v=dMjQ3hA9mEA",
"keywords": [
"Jurassic Park"
],
"_self": "https://api.memegen.link/templates/away"
},
{
"id": "awesome",
"name": "Socially Awesome Penguin",
"lines": 2,
"overlays": 0,
"styles": [],
"blank": "https://api.memegen.link/images/awesome.jpg",
"example": {
"text": [
"say a word wrong",
"create hilarious inside joke"
],
"url": "https://api.memegen.link/images/awesome/say_a_word_wrong/create_hilarious_inside_joke.jpg"
},
"source": "http://knowyourmeme.com/memes/socially-awesome-penguin",
"keywords": [],
"_self": "https://api.memegen.link/templates/awesome"
},
{
"id": "awesome-awkward",
"name": "Socially Awesome Awkward Penguin",
"lines": 2,
"overlays": 0,
"styles": [],
"blank": "https://api.memegen.link/images/awesome-awkward.jpg",
"example": {
"text": [
"first day at new job",
"spill coffee on bossman"
],
"url": "https://api.memegen.link/images/awesome-awkward/first_day_at_new_job/spill_coffee_on_bossman.jpg"
},
"source": "http://knowyourmeme.com/memes/socially-awkward-penguin",
"keywords": [],
"_self": "https://api.memegen.link/templates/awesome-awkward"
},
{
"id": "awkward",
"name": "Socially Awkward Penguin",
"lines": 2,
"overlays": 0,
"styles": [],
"blank": "https://api.memegen.link/images/awkward.jpg",
"example": {
"text": [
"start telling joke",
"forget punchline"
],
"url": "https://api.memegen.link/images/awkward/start_telling_joke/forget_punchline.jpg"
},
"source": "http://knowyourmeme.com/memes/socially-awkward-penguin",
"keywords": [],
"_self": "https://api.memegen.link/templates/awkward"
},
{
"id": "awkward-awesome",
"name": "Socially Awkward Awesome Penguin",
"lines": 2,
"overlays": 0,
"styles": [],
"blank": "https://api.memegen.link/images/awkward-awesome.jpg",
"example": {
"text": [
"trip guy on the street",
"he was running with a stolen purse"
],
"url": "https://api.memegen.link/images/awkward-awesome/trip_guy_on_the_street/he_was_running_with_a_stolen_purse.jpg"
},
"source": "http://knowyourmeme.com/memes/socially-awkward-penguin",
"keywords": [],
"_self": "https://api.memegen.link/templates/awkward-awesome"
},
{
"id": "bad",
"name": "You Should Feel Bad",
"lines": 2,
"overlays": 0,
"styles": [],
"blank": "https://api.memegen.link/images/bad.jpg",
"example": {
"text": [
"your meme is bad",
"and you should feel bad"
],
"url": "https://api.memegen.link/images/bad/your_meme_is_bad/and_you_should_feel_bad.jpg"
},
"source": "http://knowyourmeme.com/memes/your-musics-bad-and-you-should-feel-bad",
"keywords": [
"Futurama",
"Zoidberg"
],
"_self": "https://api.memegen.link/templates/bad"
},
{
"id": "badchoice",
"name": "Milk Was a Bad Choice",
"lines": 2,
"overlays": 1,
"styles": [
"default"
],
"blank": "https://api.memegen.link/images/badchoice.jpg",
"example": {
"text": [
"milk",
"was a bad choice"
],
"url": "https://api.memegen.link/images/badchoice/milk/was_a_bad_choice.jpg"
},
"source": "https://www.youtube.com/watch?v=DeY0yPqibb0",
"keywords": [
"Anchorman"
],
"_self": "https://api.memegen.link/templates/badchoice"
},
{
"id": "balloon",
"name": "Running Away Balloon",
"lines": 3,
"overlays": 3,
"styles": [
"default"
],
"blank": "https://api.memegen.link/images/balloon.jpg",
"example": {
"text": [
"Opportunities",
"Opportunities",
"Shyness"
],
"url": "https://api.memegen.link/images/balloon/Opportunities/Opportunities/Shyness.jpg"
},
"source": "https://knowyourmeme.com/memes/running-away-balloon",
"keywords": [
"Superlmer"
],
"_self": "https://api.memegen.link/templates/balloon"
},
{
"id": "bd",
"name": "Butthurt Dweller",
"lines": 2,
"overlays": 0,
"styles": [],
"blank": "https://api.memegen.link/images/bd.jpg",
"example": {
"text": [
"can't workout",
"don't want to get too buff"
],
"url": "https://api.memegen.link/images/bd/can't_workout/don't_want_to_get_too_buff.jpg"
},
"source": "http://knowyourmeme.com/memes/butthurt-dweller-gordo-granudo",
"keywords": [],
"_self": "https://api.memegen.link/templates/bd"
},
{
"id": "because",
"name": "Men in Black",
"lines": 2,
"overlays": 0,
"styles": [],
"blank": "https://api.memegen.link/images/because.jpg",
"example": {
"text": [
"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!"
],
"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"
},
"source": "https://www.youtube.com/watch?v=GNOZhAc26I8&t=76s",
"keywords": [
"Will Smith"
],
"_self": "https://api.memegen.link/templates/because"
},
{
"id": "bender",
"name": "I'm Going to Build My Own Theme Park",
"lines": 2,
"overlays": 0,
"styles": [],
"blank": "https://api.memegen.link/images/bender.jpg",
"example": {
"text": [
"i'm going to build my own theme park",
"with blackjack and hookers"
],
"url": "https://api.memegen.link/images/bender/i'm_going_to_build_my_own_theme_park/with_blackjack_and_hookers.jpg"
},
"source": "http://knowyourmeme.com/memes/im-going-to-build-my-own-theme-park-with-blackjack-and-hookers",
"keywords": [
"Futurama"
],
"_self": "https://api.memegen.link/templates/bender"
},
{
"id": "bihw",
"name": "But It's Honest Work",
"lines": 2,
"overlays": 0,
"styles": [],
"blank": "https://api.memegen.link/images/bihw.jpg",
"example": {
"text": [
"it ain't much",
"but it's honest work"
],
"url": "https://api.memegen.link/images/bihw/it_ain't_much/but_it's_honest_work.jpg"
},
"source": "https://knowyourmeme.com/memes/but-its-honest-work",
"keywords": [],
"_self": "https://api.memegen.link/templates/bihw"
},
{
"id": "bilbo",
"name": "Why Shouldn't I Keep It",
"lines": 2,
"overlays": 1,
"styles": [
"default"
],
"blank": "https://api.memegen.link/images/bilbo.jpg",
"example": {
"text": [
"After all... why not?",
"Why shouldn't I keep it?"
],
"url": "https://api.memegen.link/images/bilbo/After_all..._why_not~q/Why_shouldn't_I_keep_it~q.jpg"
},
"source": "https://knowyourmeme.com/memes/after-all-why-not-why-shouldnt-i-keep-it",
"keywords": [
"Lord of the Rings",
"Bilbo Baggins"
],
"_self": "https://api.memegen.link/templates/bilbo"
},
{
"id": "biw",
"name": "Baby Insanity Wolf",
"lines": 2,
"overlays": 0,
"styles": [],
"blank": "https://api.memegen.link/images/biw.jpg",
"example": {
"text": [
"gets iced coffee",
"in the winter"
],
"url": "https://api.memegen.link/images/biw/gets_iced_coffee/in_the_winter.jpg"
},
"source": "http://knowyourmeme.com/memes/baby-insanity-wolf",
"keywords": [],
"_self": "https://api.memegen.link/templates/biw"
},
{
"id": "blb",
"name": "Bad Luck Brian",
"lines": 2,
"overlays": 0,
"styles": [],
"blank": "https://api.memegen.link/images/blb.jpg",
"example": {
"text": [
"falls asleep in class",
"has a wet dream"
],
"url": "https://api.memegen.link/images/blb/falls_asleep_in_class/has_a_wet_dream.jpg"
},
"source": "http://knowyourmeme.com/memes/bad-luck-brian",
"keywords": [],
"_self": "https://api.memegen.link/templates/blb"
},
{
"id": "boat",
"name": "I Should Buy a Boat Cat",
"lines": 2,
"overlays": 0,
"styles": [],
"blank": "https://api.memegen.link/images/boat.jpg",
"example": {
"text": [
"",
"i should buy a boat"
],
"url": "https://api.memegen.link/images/boat/_/i_should_buy_a_boat.jpg"
},
"source": "http://knowyourmeme.com/memes/i-should-buy-a-boat-cat",
"keywords": [],
"_self": "https://api.memegen.link/templates/boat"
},
{
"id": "bongo",
"name": "Bongo Cat",
"lines": 2,
"overlays": 2,
"styles": [
"animated",
"default"
],
"blank": "https://api.memegen.link/images/bongo.jpg",
"example": {
"text": [
"Any sound when you're trying to sleep",
"Max volume alarm when you have to wake up"
],
"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"
},
"source": "https://knowyourmeme.com/memes/bongo-cat",
"keywords": [],
"_self": "https://api.memegen.link/templates/bongo"
},
{
"id": "both",
"name": "Why Not Both?",
"lines": 2,
"overlays": 1,
"styles": [
"animated",
"default"
],
"blank": "https://api.memegen.link/images/both.jpg",
"example": {
"text": [
"hard or soft tacos",
"why not both?"
],
"url": "https://api.memegen.link/images/both/hard_or_soft_tacos/why_not_both~q.webp"
},
"source": "http://knowyourmeme.com/memes/why-not-both-why-dont-we-have-both",
"keywords": [],
"_self": "https://api.memegen.link/templates/both"
},
{
"id": "box",
"name": "What's in the box!?",
"lines": 2,
"overlays": 1,
"styles": [
"animated",
"default"
],
"blank": "https://api.memegen.link/images/box.jpg",
"example": {
"text": [
"",
"What's in the box!?"
],
"url": "https://api.memegen.link/images/box/_/What's_in_the_box!~q.webp"
},
"source": "https://screenrant.com/hilarious-se7en-memes/",
"keywords": [
"Seven"
],
"_self": "https://api.memegen.link/templates/box"
},
{
"id": "bs",
"name": "This is Bull, Shark",
"lines": 2,
"overlays": 0,
"styles": [],
"blank": "https://api.memegen.link/images/bs.jpg",
"example": {
"text": [
"what a surprise...",
"you caught me again"
],
"url": "https://api.memegen.link/images/bs/what_a_surprise.../you_caught_me_again.jpg"
},
"source": "https://www.reddit.com/r/funny/comments/3grsfs",
"keywords": [],
"_self": "https://api.memegen.link/templates/bs"
},
{
"id": "bus",
"name": "Two Guys on a Bus",
"lines": 2,
"overlays": 2,
"styles": [
"default"
],
"blank": "https://api.memegen.link/images/bus.jpg",
"example": {
"text": [
"Postseason",
"Preseason"
],
"url": "https://api.memegen.link/images/bus/Postseason/Preseason.jpg"
},
"source": "https://knowyourmeme.com/memes/two-guys-on-a-bus",
"keywords": [
"Genildo Ronchi"
],
"_self": "https://api.memegen.link/templates/bus"
},
{
"id": "buzz",
"name": "X, X Everywhere",
"lines": 2,
"overlays": 1,
"styles": [
"animated",
"default"
],
"blank": "https://api.memegen.link/images/buzz.jpg",
"example": {
"text": [
"memes",
"memes everywhere"
],
"url": "https://api.memegen.link/images/buzz/memes/memes_everywhere.webp"
},
"source": "https://imgflip.com/memetemplate/X-Everywhere",
"keywords": [],
"_self": "https://api.memegen.link/templates/buzz"
},
{
"id": "cake",
"name": "Office Space Milton",
"lines": 2,
"overlays": 1,
"styles": [
"animated",
"default"
],
"blank": "https://api.memegen.link/images/cake.jpg",
"example": {
"text": [
"",
"I was told there would be cake"
],
"url": "https://api.memegen.link/images/cake/_/I_was_told_there_would_be_cake.webp"
},
"source": "https://www.youtube.com/watch?v=mDOKGa92NRo",
"keywords": [],
"_self": "https://api.memegen.link/templates/cake"
},
{
"id": "captain",
"name": "I am the Captain Now",
"lines": 2,
"overlays": 1,
"styles": [
"default"
],
"blank": "https://api.memegen.link/images/captain.jpg",
"example": {
"text": [
"look at me",
"i am the captain now"
],
"url": "https://api.memegen.link/images/captain/look_at_me/i_am_the_captain_now.jpg"
},
"source": "https://www.youtube.com/watch?v=dvA-mimf2yg",
"keywords": [],
"_self": "https://api.memegen.link/templates/captain"
},
{
"id": "captain-america",
"name": "Captain America Elevator Fight Dad Joke",
"lines": 3,
"overlays": 0,
"styles": [],
"blank": "https://api.memegen.link/images/captain-america.jpg",
"example": {
"text": [
"Have you ever eaten a clock?",
"No, why?",
"It's time consuming."
],
"url": "https://api.memegen.link/images/captain-america/Have_you_ever_eaten_a_clock~q/No,_why~q/It's_time_consuming..jpg"
},
"source": "https://knowyourmeme.com/memes/captain-america-elevator-fight-dad-joke",
"keywords": [],
"_self": "https://api.memegen.link/templates/captain-america"
},
{
"id": "cb",
"name": "Confession Bear",
"lines": 2,
"overlays": 0,
"styles": [],
"blank": "https://api.memegen.link/images/cb.jpg",
"example": {
"text": [
"i stole",
"the pic-i-nic basket"
],
"url": "https://api.memegen.link/images/cb/i_stole/the_pic--i--nic_basket.jpg"
},
"source": "http://knowyourmeme.com/memes/confession-bear",
"keywords": [],
"_self": "https://api.memegen.link/templates/cb"
},
{
"id": "cbb",
"name": "Communist Bugs Bunny",
"lines": 2,
"overlays": 1,
"styles": [
"default"
],
"blank": "https://api.memegen.link/images/cbb.jpg",
"example": {
"text": [
"",
"our memes!"
],
"url": "https://api.memegen.link/images/cbb/_/our_memes!.jpg"
},
"source": "https://knowyourmeme.com/memes/communist-bugs-bunny",
"keywords": [],
"_self": "https://api.memegen.link/templates/cbb"
},
{
"id": "cbg",
"name": "Comic Book Guy",
"lines": 2,
"overlays": 1,
"styles": [
"default"
],
"blank": "https://api.memegen.link/images/cbg.jpg",
"example": {
"text": [
"",
"worst thing ever!"
],
"url": "https://api.memegen.link/images/cbg/_/worst_thing_ever!.jpg"
},
"source": "http://simpsons.wikia.com/wiki/Jeffrey_Albertson",
"keywords": [],
"_self": "https://api.memegen.link/templates/cbg"
},
{
"id": "center",
"name": "What is this, a Center for Ants?!",
"lines": 2,
"overlays": 1,
"styles": [
"default"
],
"blank": "https://api.memegen.link/images/center.jpg",
"example": {
"text": [
"what is this",
"a center for ants"
],
"url": "https://api.memegen.link/images/center/what_is_this/a_center_for_ants.jpg"
},
"source": "http://knowyourmeme.com/memes/what-is-this-a-center-for-ants",
"keywords": [],
"_self": "https://api.memegen.link/templates/center"
},
{
"id": "ch",
"name": "Captain Hindsight",
"lines": 2,
"overlays": 0,
"styles": [],
"blank": "https://api.memegen.link/images/ch.jpg",
"example": {
"text": [
"if you wanted to avoid the friend zone",
"you should have made your intentions known from the start"
],
"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"
},
"source": "http://knowyourmeme.com/memes/captain-hindsight",
"keywords": [],
"_self": "https://api.memegen.link/templates/ch"
},
{
"id": "chair",
"name": "American Chopper Argument",
"lines": 6,
"overlays": 0,
"styles": [],
"blank": "https://api.memegen.link/images/chair.jpg",
"example": {
"text": [
"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!!"
],
"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"
},
"source": "https://knowyourmeme.com/memes/american-chopper-argument",
"keywords": [],
"_self": "https://api.memegen.link/templates/chair"
},
{
"id": "cheems",
"name": "Cheems",
"lines": 2,
"overlays": 0,
"styles": [],
"blank": "https://api.memegen.link/images/cheems.jpg",
"example": {
"text": [
"it's a good time to sleep",
"nothing will go wrong after this"
],
"url": "https://api.memegen.link/images/cheems/it's_a_good_time_to_sleep/nothing_will_go_wrong_after_this.jpg"
},
"source": "https://knowyourmeme.com/memes/cheems",
"keywords": [],
"_self": "https://api.memegen.link/templates/cheems"
},
{
"id": "chosen",
"name": "You Were the Chosen One!",
"lines": 2,
"overlays": 0,
"styles": [],
"blank": "https://api.memegen.link/images/chosen.jpg",
"example": {
"text": [
"you were the chosen one!"
],
"url": "https://api.memegen.link/images/chosen/you_were_the_chosen_one!.jpg"
},
"source": "http://knowyourmeme.com/memes/you-were-the-chosen-one",
"keywords": [],
"_self": "https://api.memegen.link/templates/chosen"
},
{
"id": "cmm",
"name": "Change My Mind",
"lines": 1,
"overlays": 0,
"styles": [],
"blank": "https://api.memegen.link/images/cmm.jpg",
"example": {
"text": [
"pineapples don't belong on pizza"
],
"url": "https://api.memegen.link/images/cmm/pineapples_don't_belong_on_pizza.jpg"
},
"source": "https://knowyourmeme.com/memes/steven-crowders-change-my-mind-campus-sign",
"keywords": [],
"_self": "https://api.memegen.link/templates/cmm"
},
{
"id": "country",
"name": "What a Country",
"lines": 2,
"overlays": 1,
"styles": [
"default"
],
"blank": "https://api.memegen.link/images/country.jpg",
"example": {
"text": [
"Inflammable means flammable?",
"What a country!"
],
"url": "https://api.memegen.link/images/country/Inflammable_means_flammable~q/What_a_country!.jpg"
},
"source": "https://www.youtube.com/watch?v=Q8mD2hsxrhQ",
"keywords": [
"The Simpsons",
"Dr. Nick"
],
"_self": "https://api.memegen.link/templates/country"
},
{
"id": "crazypills",
"name": "I Feel Like I'm Taking Crazy Pills",
"lines": 2,
"overlays": 0,
"styles": [],
"blank": "https://api.memegen.link/images/crazypills.jpg",
"example": {
"text": [
"",
"i feel like i'm taking crazy pills"
],
"url": "https://api.memegen.link/images/crazypills/_/i_feel_like_i'm_taking_crazy_pills.jpg"
},
"source": "http://knowyourmeme.com/memes/i-feel-like-im-taking-crazy-pills",
"keywords": [],
"_self": "https://api.memegen.link/templates/crazypills"
},
{
"id": "crow",
"name": "Get Better Material",
"lines": 2,
"overlays": 0,
"styles": [],
"blank": "https://api.memegen.link/images/crow.jpg",
"example": {
"text": [
"Caw Caw Caw",
"Caw Caw Caw Caw Caw Caw"
],
"url": "https://api.memegen.link/images/crow/Caw_Caw_Caw/Caw_Caw_Caw_Caw_Caw_Caw.jpg"
},
"source": "https://knowyourmeme.com/memes/get-better-material",
"keywords": [],
"_self": "https://api.memegen.link/templates/crow"
},
{
"id": "cryingfloor",
"name": "Crying on Floor",
"lines": 2,
"overlays": 0,
"styles": [],
"blank": "https://api.memegen.link/images/cryingfloor.jpg",
"example": {
"text": [
"it's okay",
"lets just reschedule drinking"
],
"url": "https://api.memegen.link/images/cryingfloor/it's_okay/lets_just_reschedule_drinking.jpg"
},
"source": "http://knowyourmeme.com/photos/1125083-hold-the-door",
"keywords": [],
"_self": "https://api.memegen.link/templates/cryingfloor"
},
{
"id": "db",
"name": "Distracted Boyfriend",
"lines": 3,
"overlays": 0,
"styles": [],
"blank": "https://api.memegen.link/images/db.jpg",
"example": {
"text": [
"Socialism",
"The Youth",
"Capitalism"
],
"url": "https://api.memegen.link/images/db/Socialism/The_Youth/Capitalism.jpg"
},
"source": "https://knowyourmeme.com/memes/distracted-boyfriend",
"keywords": [],
"_self": "https://api.memegen.link/templates/db"
},
{
"id": "dbg",
"name": "Expectation vs. Reality",
"lines": 2,
"overlays": 2,
"styles": [
"default"
],
"blank": "https://api.memegen.link/images/dbg.jpg",
"example": {
"text": [
"Clicking the 'X' on a mobile ad",
"The 'X' is part of the ad"
],
"url": "https://api.memegen.link/images/dbg/Clicking_the_'X'_on_a_mobile_ad/The_'X'_is_part_of_the_ad.jpg"
},
"source": "https://knowyourmeme.com/memes/disappointed-black-guy",
"keywords": [
"Disappointed Black Guy"
],
"_self": "https://api.memegen.link/templates/dbg"
},
{
"id": "dg",
"name": "Distracted Girlfriend",
"lines": 3,
"overlays": 0,
"styles": [],
"blank": "https://api.memegen.link/images/dg.jpg",
"example": {
"text": [
"Socialism",
"The Youth",
"Capitalism"
],
"url": "https://api.memegen.link/images/dg/Socialism/The_Youth/Capitalism.jpg"
},
"source": "https://knowyourmeme.com/memes/distracted-boyfriend",
"keywords": [],
"_self": "https://api.memegen.link/templates/dg"
},
{
"id": "disastergirl",
"name": "Disaster Girl",
"lines": 2,
"overlays": 0,
"styles": [],
"blank": "https://api.memegen.link/images/disastergirl.jpg",
"example": {
"text": [
"",
"just as I planned..."
],
"url": "https://api.memegen.link/images/disastergirl/_/just_as_I_planned....jpg"
},
"source": "http://knowyourmeme.com/memes/disaster-girl",
"keywords": [],
"_self": "https://api.memegen.link/templates/disastergirl"
},
{
"id": "dodgson",
"name": "See? Nobody Cares",
"lines": 2,
"overlays": 1,
"styles": [
"animated",
"default"
],
"blank": "https://api.memegen.link/images/dodgson.jpg",
"example": {
"text": [
"we've got dodgson here!",
"see? nobody cares"
],
"url": "https://api.memegen.link/images/dodgson/we've_got_dodgson_here!/see~q_nobody_cares.webp"
},
"source": "http://knowyourmeme.com/memes/see-nobody-cares",
"keywords": [
"Jurassic Park"
],
"_self": "https://api.memegen.link/templates/dodgson"
},
{
"id": "doge",
"name": "Doge",
"lines": 2,
"overlays": 1,
"styles": [
"bark",
"bite",
"default",
"full",
"growl",
"pet",
"roll"
],
"blank": "https://api.memegen.link/images/doge.jpg",
"example": {
"text": [
"such meme",
"very skill"
],
"url": "https://api.memegen.link/images/doge/such_meme/very_skill.jpg"
},
"source": "http://knowyourmeme.com/memes/doge",
"keywords": [],
"_self": "https://api.memegen.link/templates/doge"
},
{
"id": "dragon",
"name": "What Color Do You Want Your Dragon",
"lines": 1,
"overlays": 0,
"styles": [],
"blank": "https://api.memegen.link/images/dragon.jpg",
"example": {
"text": [
"OK I want a boyfriend"
],
"url": "https://api.memegen.link/images/dragon/OK_I_want_a_boyfriend.jpg"
},
"source": "https://knowyourmeme.com/photos/1052192-tumblr",
"keywords": [
"wish"
],
"_self": "https://api.memegen.link/templates/dragon"
},
{
"id": "drake",
"name": "Drake Hotline Bling",
"lines": 2,
"overlays": 0,
"styles": ["upper"],
"blank": "https://imgflip.com/s/meme/Drake-Hotline-Bling.jpg",
"example": {
"text": [
"Using regular functions",
"Using extism plugins"
],
"url": "https://i.imgflip.com/example.jpg"
},
"keywords": ["drake", "hotline bling", "no yes"],
"_self": "https://api.imgflip.com/meme/181913649"
},
{
"id": "drowning",
"name": "Drowning High Five",
"lines": 3,
"overlays": 1,
"styles": [
"default"
],
"blank": "https://api.memegen.link/images/drowning.jpg",
"example": {
"text": [
"Me Asking for Help",
"Online Commenter",
"I'm having that problem too."
],
"url": "https://api.memegen.link/images/drowning/Me_Asking_for_Help/Online_Commenter/I'm_having_that_problem_too..jpg"
},
"source": "https://knowyourmeme.com/memes/drowning-high-five",
"keywords": [],
"_self": "https://api.memegen.link/templates/drowning"
},
{
"id": "drunk",
"name": "Drunk Baby",
"lines": 2,
"overlays": 0,
"styles": [],
"blank": "https://api.memegen.link/images/drunk.jpg",
"example": {
"text": [
"Walk in a straight line?",
"Officer, I can barely stand"
],
"url": "https://api.memegen.link/images/drunk/Walk_in_a_straight_line~q/Officer,_I_can_barely_stand.jpg"
},
"source": "https://knowyourmeme.com/memes/drunk-baby--2",
"keywords": [],
"_self": "https://api.memegen.link/templates/drunk"
},
{
"id": "ds",
"name": "Daily Struggle",
"lines": 3,
"overlays": 1,
"styles": [
"default",
"maga"
],
"blank": "https://api.memegen.link/images/ds.jpg",
"example": {
"text": [
"The dress is black and blue.",
"The dress is gold and white."
],
"url": "https://api.memegen.link/images/ds/The_dress_is_black_and_blue./The_dress_is_gold_and_white..jpg"
},
"source": "https://knowyourmeme.com/memes/daily-struggle",
"keywords": [],
"_self": "https://api.memegen.link/templates/ds"
},
{
"id": "dsm",
"name": "Dating Site Murderer",
"lines": 2,
"overlays": 0,
"styles": [],
"blank": "https://api.memegen.link/images/dsm.jpg",
"example": {
"text": [
"they will never find your body",
"as attractive as i do"
],
"url": "https://api.memegen.link/images/dsm/they_will_never_find_your_body/as_attractive_as_i_do.jpg"
},
"source": "http://knowyourmeme.com/memes/dating-site-murderer",
"keywords": [],
"_self": "https://api.memegen.link/templates/dsm"
},
{
"id": "dwight",
"name": "Schrute Facts",
"lines": 2,
"overlays": 0,
"styles": [],
"blank": "https://api.memegen.link/images/dwight.jpg",
"example": {
"text": [
"love is all you need?",
"false. you need water and rations."
],
"url": "https://api.memegen.link/images/dwight/love_is_all_you_need~q/false._you_need_water_and_rations..jpg"
},
"source": "http://knowyourmeme.com/memes/schrute-facts",
"keywords": [
"The Office"
],
"_self": "https://api.memegen.link/templates/dwight"
},
{
"id": "elf",
"name": "You Sit on a Throne of Lies",
"lines": 2,
"overlays": 0,
"styles": [],
"blank": "https://api.memegen.link/images/elf.jpg",
"example": {
"text": [
"",
"you sit on a throne of lies"
],
"url": "https://api.memegen.link/images/elf/_/you_sit_on_a_throne_of_lies.jpg"
},
"source": "http://knowyourmeme.com/memes/you-sit-on-a-throne-of-lies",
"keywords": [
"Elf"
],
"_self": "https://api.memegen.link/templates/elf"
},
{
"id": "elmo",
"name": "Elmo Choosing Cocaine",
"lines": 5,
"overlays": 4,
"styles": [
"default"
],
"blank": "https://api.memegen.link/images/elmo.jpg",
"example": {
"text": [
"Historical Accuracy",
"History Channel",
"Aliens",
"Historical Accuracy"
],
"url": "https://api.memegen.link/images/elmo/Historical_Accuracy/History_Channel/Aliens/Historical_Accuracy.jpg"
},
"source": "https://knowyourmeme.com/memes/elmo-choosing-cocaine",
"keywords": [],
"_self": "https://api.memegen.link/templates/elmo"
},
{
"id": "ermg",
"name": "Ermahgerd",
"lines": 2,
"overlays": 1,
"styles": [
"default"
],
"blank": "https://api.memegen.link/images/ermg.jpg",
"example": {
"text": [
"ermahgerd",
"memes"
],
"url": "https://api.memegen.link/images/ermg/ermahgerd/memes.jpg"
},
"source": "http://knowyourmeme.com/memes/ermahgerd",
"keywords": [],
"_self": "https://api.memegen.link/templates/ermg"
},
{
"id": "exit",
"name": "Left Exit 12 Off Ramp",
"lines": 3,
"overlays": 3,
"styles": [
"default"
],
"blank": "https://api.memegen.link/images/exit.jpg",
"example": {
"text": [
"The Pins",
"The Gutter",
"Bowling Ball"
],
"url": "https://api.memegen.link/images/exit/The_Pins/The_Gutter/Bowling_Ball.jpg"
},
"source": "https://knowyourmeme.com/memes/left-exit-12-off-ramp",
"keywords": [],
"_self": "https://api.memegen.link/templates/exit"
},
{
"id": "fa",
"name": "Forever Alone",
"lines": 2,
"overlays": 0,
"styles": [],
"blank": "https://api.memegen.link/images/fa.jpg",
"example": {
"text": [
"forever",
"alone"
],
"url": "https://api.memegen.link/images/fa/forever/alone.jpg"
},
"source": "http://knowyourmeme.com/memes/forever-alone",
"keywords": [],
"_self": "https://api.memegen.link/templates/fa"
},
{
"id": "facepalm",
"name": "Facepalm",
"lines": 2,
"overlays": 1,
"styles": [
"config.61caca6063a240cf99d74abda35b148557f37998",
"default",
"default.top"
],
"blank": "https://api.memegen.link/images/facepalm.jpg",
"example": {
"text": [
"",
"I can't even"
],
"url": "https://api.memegen.link/images/facepalm/_/I_can't_even.jpg"
},
"source": "http://knowyourmeme.com/memes/facepalm",
"keywords": [],
"_self": "https://api.memegen.link/templates/facepalm"
},
{
"id": "fbf",
"name": "Foul Bachelor Frog",
"lines": 2,
"overlays": 0,
"styles": [],
"blank": "https://api.memegen.link/images/fbf.jpg",
"example": {
"text": [
"paper towel",
"the plate that cleans up after itself"
],
"url": "https://api.memegen.link/images/fbf/paper_towel/the_plate_that_cleans_up_after_itself.jpg"
},
"source": "http://knowyourmeme.com/memes/foul-bachelor-frog",
"keywords": [],
"_self": "https://api.memegen.link/templates/fbf"
},
{
"id": "feelsgood",
"name": "Feels Good",
"lines": 2,
"overlays": 0,
"styles": [],
"blank": "https://api.memegen.link/images/feelsgood.jpg",
"example": {
"text": [
"",
"feels good"
],
"url": "https://api.memegen.link/images/feelsgood/_/feels_good.jpg"
},
"source": "https://knowyourmeme.com/memes/feels-good",
"keywords": [],
"_self": "https://api.memegen.link/templates/feelsgood"
},
{
"id": "fetch",
"name": "Stop Trying to Make Fetch Happen",
"lines": 2,
"overlays": 0,
"styles": [],
"blank": "https://api.memegen.link/images/fetch.jpg",
"example": {
"text": [
"stop trying to make fetch happen",
"it's not going to happen"
],
"url": "https://api.memegen.link/images/fetch/stop_trying_to_make_fetch_happen/it's_not_going_to_happen.jpg"
},
"source": "http://knowyourmeme.com/memes/stop-trying-to-make-fetch-happen",
"keywords": [],
"_self": "https://api.memegen.link/templates/fetch"
},
{
"id": "fine",
"name": "This is Fine",
"lines": 2,
"overlays": 1,
"styles": [
"animated",
"default"
],
"blank": "https://api.memegen.link/images/fine.jpg",
"example": {
"text": [
"",
"this is fine"
],
"url": "https://api.memegen.link/images/fine/_/this_is_fine.webp"
},
"source": "http://gunshowcomic.com/648",
"keywords": [],
"_self": "https://api.memegen.link/templates/fine"
},
{
"id": "firsttry",
"name": "First Try!",
"lines": 2,
"overlays": 0,
"styles": [],
"blank": "https://api.memegen.link/images/firsttry.jpg",
"example": {
"text": [
"",
"first try!"
],
"url": "https://api.memegen.link/images/firsttry/_/first_try!.jpg"
},
"source": "https://www.youtube.com/watch?v=44-RsrF_V_w",
"keywords": [],
"_self": "https://api.memegen.link/templates/firsttry"
},
{
"id": "fmr",
"name": "Fuck Me, Right?",
"lines": 2,
"overlays": 0,
"styles": [],
"blank": "https://api.memegen.link/images/fmr.jpg",
"example": {
"text": [
"",
"fuck me, right?"
],
"url": "https://api.memegen.link/images/fmr/_/fuck_me,_right~q.jpg"
},
"source": "http://knowyourmeme.com/memes/fuck-me-right",
"keywords": [],
"_self": "https://api.memegen.link/templates/fmr"
},
{
"id": "friends",
"name": "Are You Two Friends?",
"lines": 3,
"overlays": 3,
"styles": [
"default"
],
"blank": "https://api.memegen.link/images/friends.jpg",
"example": {
"text": [
"Progressives",
"Republicans",
"Libertarians"
],
"url": "https://api.memegen.link/images/friends/Progressives/Republicans/Libertarians.jpg"
},
"source": "https://knowyourmeme.com/memes/are-you-two-friends",
"keywords": [
"Star Trek"
],
"_self": "https://api.memegen.link/templates/friends"
},
{
"id": "fry",
"name": "Futurama Fry",
"lines": 2,
"overlays": 1,
"styles": [
"animated",
"default"
],
"blank": "https://api.memegen.link/images/fry.jpg",
"example": {
"text": [
"not sure if trolling",
"or just stupid"
],
"url": "https://api.memegen.link/images/fry/not_sure_if_trolling/or_just_stupid.webp"
},
"source": "http://knowyourmeme.com/memes/futurama-fry-not-sure-if",
"keywords": [
"Philip J. Fry"
],
"_self": "https://api.memegen.link/templates/fry"
},
{
"id": "fwp",
"name": "First World Problems",
"lines": 2,
"overlays": 0,
"styles": [],
"blank": "https://api.memegen.link/images/fwp.jpg",
"example": {
"text": [
"someone on the internet",
"disagrees with me"
],
"url": "https://api.memegen.link/images/fwp/someone_on_the_internet/disagrees_with_me.jpg"
},
"source": "http://knowyourmeme.com/memes/first-world-problems",
"keywords": [],
"_self": "https://api.memegen.link/templates/fwp"
},
{
"id": "gandalf",
"name": "Confused Gandalf",
"lines": 2,
"overlays": 0,
"styles": [],
"blank": "https://api.memegen.link/images/gandalf.jpg",
"example": {
"text": [
"",
"I have no memory of this place"
],
"url": "https://api.memegen.link/images/gandalf/_/I_have_no_memory_of_this_place.jpg"
},
"source": "http://knowyourmeme.com/memes/confused-gandalf",
"keywords": [
"Lord of the Rings"
],
"_self": "https://api.memegen.link/templates/gandalf"
},
{
"id": "gb",
"name": "Galaxy Brain",
"lines": 4,
"overlays": 0,
"styles": [],
"blank": "https://api.memegen.link/images/gb.jpg",
"example": {
"text": [
"Who",
"Whom",
"Whom'st",
"Whomst'd"
],
"url": "https://api.memegen.link/images/gb/Who/Whom/Whom'st/Whomst'd.jpg"
},
"source": "https://knowyourmeme.com/memes/galaxy-brain",
"keywords": [],
"_self": "https://api.memegen.link/templates/gb"
},
{
"id": "gears",
"name": "You Know What Really Grinds My Gears?",
"lines": 2,
"overlays": 0,
"styles": [],
"blank": "https://api.memegen.link/images/gears.jpg",
"example": {
"text": [
"you know what really grinds my gears?",
"when people post images of cogs that don't mesh"
],
"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"
},
"source": "http://knowyourmeme.com/memes/you-know-what-really-grinds-my-gears",
"keywords": [
"Family Guy"
],
"_self": "https://api.memegen.link/templates/gears"
},
{
"id": "genie",
"name": "Genie Lamp",
"lines": 2,
"overlays": 0,
"styles": [],
"blank": "https://api.memegen.link/images/genie.jpg",
"example": {
"text": [
"phenomenal cosmic power",
"itty bitty living space"
],
"url": "https://api.memegen.link/images/genie/phenomenal_cosmic_power/itty_bitty_living_space.jpg"
},
"source": "https://imgflip.com/memetemplate/205390462",
"keywords": [
"Aladin"
],
"_self": "https://api.memegen.link/templates/genie"
},
{
"id": "ggg",
"name": "Good Guy Greg",
"lines": 2,
"overlays": 0,
"styles": [],
"blank": "https://api.memegen.link/images/ggg.jpg",
"example": {
"text": [
"sleeps on your couch",
"makes breakfast"
],
"url": "https://api.memegen.link/images/ggg/sleeps_on_your_couch/makes_breakfast.jpg"
},
"source": "http://knowyourmeme.com/memes/good-guy-greg",
"keywords": [],
"_self": "https://api.memegen.link/templates/ggg"
},
{
"id": "glasses",
"name": "Peter Parker's Glasses",
"lines": 2,
"overlays": 2,
"styles": [
"default"
],
"blank": "https://api.memegen.link/images/glasses.jpg",
"example": {
"text": [
"Virginity is cool, stay pure",
"I am utterly incapable of getting laid"
],
"url": "https://api.memegen.link/images/glasses/Virginity_is_cool,_stay_pure/I_am_utterly_incapable_of_getting_laid.jpg"
},
"source": "https://knowyourmeme.com/memes/peter-parkers-glasses",
"keywords": [],
"_self": "https://api.memegen.link/templates/glasses"
},
{
"id": "gone",
"name": "And It's Gone",
"lines": 2,
"overlays": 0,
"styles": [],
"blank": "https://api.memegen.link/images/gone.jpg",
"example": {
"text": [
"we'll just invest that money",
"...aaaand it's gone"
],
"url": "https://api.memegen.link/images/gone/we'll_just_invest_that_money/...aaaand_it's_gone.jpg"
},
"source": "https://knowyourmeme.com/memes/and-its-gone",
"keywords": [
"South Park"
],
"_self": "https://api.memegen.link/templates/gone"
},
{
"id": "grave",
"name": "Grant Gustin Next To Oliver Queen's Grave",
"lines": 3,
"overlays": 3,
"styles": [
"default"
],
"blank": "https://api.memegen.link/images/grave.jpg",
"example": {
"text": [
"Here lies the last bit of human decency",
"Society",
"Social Media"
],
"url": "https://api.memegen.link/images/grave/Here_lies_the_last_bit_of_human_decency/Society/Social_Media.jpg"
},
"source": "https://knowyourmeme.com/memes/grant-gustin-next-to-oliver-queens-grave",
"keywords": [],
"_self": "https://api.memegen.link/templates/grave"
},
{
"id": "gru",
"name": "Gru's Plan",
"lines": 4,
"overlays": 0,
"styles": [],
"blank": "https://api.memegen.link/images/gru.jpg",
"example": {
"text": [
"Learn how to make memes.",
"Make a meme.",
"No one likes it.",
"No one likes it."
],
"url": "https://api.memegen.link/images/gru/Learn_how_to_make_memes./Make_a_meme./No_one_likes_it./No_one_likes_it..jpg"
},
"source": "https://knowyourmeme.com/memes/grus-plan",
"keywords": [],
"_self": "https://api.memegen.link/templates/gru"
},
{
"id": "grumpycat",
"name": "Grumpy Cat",
"lines": 2,
"overlays": 0,
"styles": [],
"blank": "https://api.memegen.link/images/grumpycat.jpg",
"example": {
"text": [
"i hope that what does not kill you",
"tries again"
],
"url": "https://api.memegen.link/images/grumpycat/i_hope_that_what_does_not_kill_you/tries_again.jpg"
},
"source": "https://imgflip.com/memegenerator/Grumpy-Cat",
"keywords": [],
"_self": "https://api.memegen.link/templates/grumpycat"
},
{
"id": "hagrid",
"name": "I Should Not Have Said That",
"lines": 2,
"overlays": 0,
"styles": [],
"blank": "https://api.memegen.link/images/hagrid.jpg",
"example": {
"text": [
"",
"i should not have said that"
],
"url": "https://api.memegen.link/images/hagrid/_/i_should_not_have_said_that.jpg"
},
"source": "https://www.youtube.com/watch?v=498HkRM77gg",
"keywords": [
"Harry Potter"
],
"_self": "https://api.memegen.link/templates/hagrid"
},
{
"id": "happening",
"name": "It's Happening",
"lines": 2,
"overlays": 1,
"styles": [
"animated",
"default"
],
"blank": "https://api.memegen.link/images/happening.jpg",
"example": {
"text": [
"",
"it's happening"
],
"url": "https://api.memegen.link/images/happening/_/it's_happening.webp"
},
"source": "http://knowyourmeme.com/memes/doom-paul-its-happening",
"keywords": [],
"_self": "https://api.memegen.link/templates/happening"
},
{
"id": "harold",
"name": "Hide the Pain Harold",
"lines": 2,
"overlays": 0,
"styles": [],
"blank": "https://api.memegen.link/images/harold.jpg",
"example": {
"text": [
"when the boss sees",
"your meme tab"
],
"url": "https://api.memegen.link/images/harold/when_the_boss_sees/your_meme_tab.jpg"
},
"source": "https://knowyourmeme.com/memes/hide-the-pain-harold",
"keywords": [],
"_self": "https://api.memegen.link/templates/harold"
},
{
"id": "headaches",
"name": "Types of Headaches",
"lines": 1,
"overlays": 1,
"styles": [
"default"
],
"blank": "https://api.memegen.link/images/headaches.jpg",
"example": {
"text": [
"Breaking Production"
],
"url": "https://api.memegen.link/images/headaches/Breaking_Production.jpg"
},
"source": "https://knowyourmeme.com/memes/types-of-headaches",
"keywords": [],
"_self": "https://api.memegen.link/templates/headaches"
},
{
"id": "hipster",
"name": "Hipster Barista",
"lines": 2,
"overlays": 0,
"styles": [],
"blank": "https://api.memegen.link/images/hipster.jpg",
"example": {
"text": [
"puts coffee deal on Groupon",
"rolls eyes when you actually use it"
],
"url": "https://api.memegen.link/images/hipster/puts_coffee_deal_on_Groupon/rolls_eyes_when_you_actually_use_it.jpg"
},
"source": "http://knowyourmeme.com/memes/hipster-barista",
"keywords": [],
"_self": "https://api.memegen.link/templates/hipster"
},
{
"id": "home",
"name": "We Have Food at Home",
"lines": 3,
"overlays": 1,
"styles": [
"default"
],
"blank": "https://api.memegen.link/images/home.jpg",
"example": {
"text": [
"Me: Can we stop and get food?",
"Mom: We have food at home.",
"Food at home:"
],
"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"
},
"source": "https://knowyourmeme.com/memes/we-have-food-at-home",
"keywords": [],
"_self": "https://api.memegen.link/templates/home"
},
{
"id": "icanhas",
"name": "I Can Has Cheezburger?",
"lines": 2,
"overlays": 0,
"styles": [],
"blank": "https://api.memegen.link/images/icanhas.jpg",
"example": {
"text": [
"i can has",
"this meme?"
],
"url": "https://api.memegen.link/images/icanhas/i_can_has/this_meme~q.jpg"
},
"source": "http://knowyourmeme.com/memes/happy-cat",
"keywords": [],
"_self": "https://api.memegen.link/templates/icanhas"
},
{
"id": "imsorry",
"name": "Oh, I'm Sorry, I Thought This Was America",
"lines": 2,
"overlays": 0,
"styles": [],
"blank": "https://api.memegen.link/images/imsorry.jpg",
"example": {
"text": [
"oh, i'm sorry",
"i thought this was america"
],
"url": "https://api.memegen.link/images/imsorry/oh,_i'm_sorry/i_thought_this_was_america.jpg"
},
"source": "http://knowyourmeme.com/memes/oh-im-sorry-i-thought-this-was-america",
"keywords": [],
"_self": "https://api.memegen.link/templates/imsorry"
},
{
"id": "inigo",
"name": "Inigo Montoya",
"lines": 2,
"overlays": 0,
"styles": [],
"blank": "https://api.memegen.link/images/inigo.jpg",
"example": {
"text": [
"you keep using that word",
"i do not think it means what you think it means"
],
"url": "https://api.memegen.link/images/inigo/you_keep_using_that_word/i_do_not_think_it_means_what_you_think_it_means.jpg"
},
"source": "http://knowyourmeme.com/memes/you-keep-using-that-word-i-do-not-think-it-means-what-you-think-it-means",
"keywords": [],
"_self": "https://api.memegen.link/templates/inigo"
},
{
"id": "interesting",
"name": "The Most Interesting Man in the World",
"lines": 2,
"overlays": 0,
"styles": [],
"blank": "https://api.memegen.link/images/interesting.jpg",
"example": {
"text": [
"I don't often drink beer",
"so you shouldn't value my opinion"
],
"url": "https://api.memegen.link/images/interesting/I_don't_often_drink_beer/so_you_shouldn't_value_my_opinion.jpg"
},
"source": "http://knowyourmeme.com/memes/the-most-interesting-man-in-the-world",
"keywords": [],
"_self": "https://api.memegen.link/templates/interesting"
},
{
"id": "ive",
"name": "Jony Ive Redesigns Things",
"lines": 2,
"overlays": 0,
"styles": [],
"blank": "https://api.memegen.link/images/ive.jpg",
"example": {
"text": [
"we think",
"you'll love it"
],
"url": "https://api.memegen.link/images/ive/we_think/you'll_love_it.jpg"
},
"source": "https://www.apple.com/pr/bios/jonathan-ive.html",
"keywords": [],
"_self": "https://api.memegen.link/templates/ive"
},
{
"id": "iw",
"name": "Insanity Wolf",
"lines": 2,
"overlays": 1,
"styles": [
"default"
],
"blank": "https://api.memegen.link/images/iw.jpg",
"example": {
"text": [
"does testing",
"in production"
],
"url": "https://api.memegen.link/images/iw/does_testing/in_production.jpg"
},
"source": "http://knowyourmeme.com/memes/insanity-wolf",
"keywords": [],
"_self": "https://api.memegen.link/templates/iw"
},
{
"id": "jd",
"name": "Joseph Ducreux",
"lines": 2,
"overlays": 0,
"styles": [],
"blank": "https://api.memegen.link/images/jd.jpg",
"example": {
"text": [
"disregard females",
"acquire currency"
],
"url": "https://api.memegen.link/images/jd/disregard_females/acquire_currency.jpg"
},
"source": "https://knowyourmeme.com/memes/joseph-ducreux-archaic-rap",
"keywords": [
"Archaic Rap"
],
"_self": "https://api.memegen.link/templates/jd"
},
{
"id": "jetpack",
"name": "Nothing To Do Here",
"lines": 2,
"overlays": 0,
"styles": [],
"blank": "https://api.memegen.link/images/jetpack.jpg",
"example": {
"text": [
"nothing to do here"
],
"url": "https://api.memegen.link/images/jetpack/nothing_to_do_here.jpg"
},
"source": "http://knowyourmeme.com/memes/nothing-to-do-here-jet-pack-guy",
"keywords": [],
"_self": "https://api.memegen.link/templates/jetpack"
},
{
"id": "jim",
"name": "Jim Halpert Pointing to Whiteboard",
"lines": 2,
"overlays": 2,
"styles": [
"default"
],
"blank": "https://api.memegen.link/images/jim.jpg",
"example": {
"text": [
"It's OK to like trashy shows and movies",
"If it makes you happy then it's not a waste of time"
],
"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"
},
"source": "https://knowyourmeme.com/memes/jim-halpert-pointing-to-whiteboard",
"keywords": [
"The Office"
],
"_self": "https://api.memegen.link/templates/jim"
},
{
"id": "joker",
"name": "It's Simple, Kill the Batman",
"lines": 2,
"overlays": 0,
"styles": [],
"blank": "https://api.memegen.link/images/joker.jpg",
"example": {
"text": [
"it's simple",
"kill the batman"
],
"url": "https://api.memegen.link/images/joker/it's_simple/kill_the_batman.jpg"
},
"source": "https://www.youtube.com/watch?v=f_XHjqABQQA",
"keywords": [],
"_self": "https://api.memegen.link/templates/joker"
},
{
"id": "jw",
"name": "Probably Not a Good Idea",
"lines": 2,
"overlays": 1,
"styles": [
"alternate",
"default"
],
"blank": "https://api.memegen.link/images/jw.jpg",
"example": {
"text": [
"you just went and made a new dinosaur?",
"probably not a good idea"
],
"url": "https://api.memegen.link/images/jw/you_just_went_and_made_a_new_dinosaur~q/probably_not_a_good_idea.jpg"
},
"source": "https://www.youtube.com/watch?v=RFinNxS5KN4&t=86",
"keywords": [],
"_self": "https://api.memegen.link/templates/jw"
},
{
"id": "keanu",
"name": "Conspiracy Keanu",
"lines": 2,
"overlays": 0,
"styles": [],
"blank": "https://api.memegen.link/images/keanu.jpg",
"example": {
"text": [
"what if the CIA invented dinosaurs",
"to discourage time travel?"
],
"url": "https://api.memegen.link/images/keanu/what_if_the_CIA_invented_dinosaurs/to_discourage_time_travel~q.jpg"
},
"source": "http://knowyourmeme.com/memes/conspiracy-keanu",
"keywords": [],
"_self": "https://api.memegen.link/templates/keanu"
},
{
"id": "kermit",
"name": "But That's None of My Business",
"lines": 2,
"overlays": 0,
"styles": [],
"blank": "https://api.memegen.link/images/kermit.jpg",
"example": {
"text": [
"",
"but that's none of my business"
],
"url": "https://api.memegen.link/images/kermit/_/but_that's_none_of_my_business.jpg"
},
"source": "http://knowyourmeme.com/memes/but-thats-none-of-my-business",
"keywords": [],
"_self": "https://api.memegen.link/templates/kermit"
},
{
"id": "khaby-lame",
"name": "Khaby Lame Shrug",
"lines": 2,
"overlays": 2,
"styles": [
"default"
],
"blank": "https://api.memegen.link/images/khaby-lame.jpg",
"example": {
"text": [
"Bad mood?",
"Laugh at memes"
],
"url": "https://api.memegen.link/images/khaby-lame/Bad_mood~q/Laugh_at_memes.jpg"
},
"source": "https://knowyourmeme.com/photos/2132291-khaby-lame-shrug-its-that-simple",
"keywords": [
"It's That Sample"
],
"_self": "https://api.memegen.link/templates/khaby-lame"
},
{
"id": "kk",
"name": "Karate Kyle",
"lines": 2,
"overlays": 1,
"styles": [
"default",
"luke"
],
"blank": "https://api.memegen.link/images/kk.jpg",
"example": {
"text": [
"they broke my pencils",
"i broke their neck"
],
"url": "https://api.memegen.link/images/kk/they_broke_my_pencils/i_broke_their_neck.jpg"
},
"source": "https://knowyourmeme.com/memes/karate-kyle",
"keywords": [],
"_self": "https://api.memegen.link/templates/kk"
},
{
"id": "kombucha",
"name": "Kombucha Girl",
"lines": 2,
"overlays": 0,
"styles": [],
"blank": "https://api.memegen.link/images/kombucha.jpg",
"example": {
"text": [
"Trying a thing.",
"Trying a thing again."
],
"url": "https://api.memegen.link/images/kombucha/Trying_a_thing./Trying_a_thing_again..jpg"
},
"source": "https://www.buzzfeed.com/daniellaemanuel/woman-trying-kombucha-meme",
"keywords": [],
"_self": "https://api.memegen.link/templates/kombucha"
},
{
"id": "kramer",
"name": "Kramer, What's Going On In There?",
"lines": 2,
"overlays": 1,
"styles": [
"default",
"seinfeld"
],
"blank": "https://api.memegen.link/images/kramer.jpg",
"example": {
"text": [
"Kramer, what's going on in there?",
"It's a Chicken Roaster sign, right across from my window."
],
"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"
},
"source": "https://knowyourmeme.com/memes/kramer-whats-going-on-in-there",
"keywords": [],
"_self": "https://api.memegen.link/templates/kramer"
},
{
"id": "leo",
"name": "Leo Strutting",
"lines": 2,
"overlays": 0,
"styles": [],
"blank": "https://api.memegen.link/images/leo.jpg",
"example": {
"text": [
"I have no idea",
"what I am doing"
],
"url": "https://api.memegen.link/images/leo/I_have_no_idea/what_I_am_doing.jpg"
},
"source": "https://knowyourmeme.com/memes/strutting-leo",
"keywords": [],
"_self": "https://api.memegen.link/templates/leo"
},
{
"id": "light",
"name": "Everything the Light Touches is Our Kingdom",
"lines": 2,
"overlays": 2,
"styles": [
"default"
],
"blank": "https://api.memegen.link/images/light.jpg",
"example": {
"text": [
"What about that shadowy place?",
"That's beyond our borders. You must never go there."
],
"url": "https://api.memegen.link/images/light/What_about_that_shadowy_place~q/That's_beyond_our_borders._You_must_never_go_there..jpg"
},
"source": "https://www.youtube.com/watch?v=JawCb15MWLc",
"keywords": [
"Lion King",
"Mufasa and Simba"
],
"_self": "https://api.memegen.link/templates/light"
},
{
"id": "live",
"name": "Do It Live!",
"lines": 2,
"overlays": 1,
"styles": [
"animated",
"default"
],
"blank": "https://api.memegen.link/images/live.jpg",
"example": {
"text": [
"",
"do it live!"
],
"url": "https://api.memegen.link/images/live/_/do_it_live!.webp"
},
"source": "http://knowyourmeme.com/memes/bill-oreilly-rant",
"keywords": [],
"_self": "https://api.memegen.link/templates/live"
},
{
"id": "ll",
"name": "Laughing Lizard",
"lines": 2,
"overlays": 0,
"styles": [],
"blank": "https://api.memegen.link/images/ll.jpg",
"example": {
"text": [
"",
"hhhehehe"
],
"url": "https://api.memegen.link/images/ll/_/hhhehehe.jpg"
},
"source": "http://knowyourmeme.com/memes/laughing-lizard-hhhehehe",
"keywords": [],
"_self": "https://api.memegen.link/templates/ll"
},
{
"id": "lrv",
"name": "Laundry Room Viking",
"lines": 2,
"overlays": 0,
"styles": [],
"blank": "https://api.memegen.link/images/lrv.jpg",
"example": {
"text": [
"do the laundry they said",
"it will be fun they said"
],
"url": "https://api.memegen.link/images/lrv/do_the_laundry_they_said/it_will_be_fun_they_said.jpg"
},
"source": "http://knowyourmeme.com/memes/laundry-room-viking",
"keywords": [],
"_self": "https://api.memegen.link/templates/lrv"
},
{
"id": "made",
"name": "I Made This",
"lines": 5,
"overlays": 3,
"styles": [
"default"
],
"blank": "https://api.memegen.link/images/made.jpg",
"example": {
"text": [
"The Internet",
"Everyone",
"I made this.",
"You made this?",
"I made this."
],
"url": "https://api.memegen.link/images/made/The_Internet/Everyone/I_made_this./You_made_this~q/I_made_this..jpg"
},
"source": "https://knowyourmeme.com/memes/i-made-this",
"keywords": [],
"_self": "https://api.memegen.link/templates/made"
},
{
"id": "mb",
"name": "Member Berries",
"lines": 2,
"overlays": 1,
"styles": [
"animated",
"box",
"default",
"flood"
],
"blank": "https://api.memegen.link/images/mb.jpg",
"example": {
"text": [
"'member",
"star wars?"
],
"url": "https://api.memegen.link/images/mb/'member/star_wars~q.webp"
},
"source": "http://knowyourmeme.com/memes/member-berries",
"keywords": [],
"_self": "https://api.memegen.link/templates/mb"
},
{
"id": "michael-scott",
"name": "Michael Scott No God No",
"lines": 2,
"overlays": 0,
"styles": [],
"blank": "https://api.memegen.link/images/michael-scott.jpg",
"example": {
"text": [
"no, god! no god please no!",
"noooooooooooooooo!"
],
"url": "https://api.memegen.link/images/michael-scott/no,_god!_no_god_please_no!/noooooooooooooooo!.jpg"
},
"source": "https://www.youtube.com/watch?v=31g0YE61PLQ",
"keywords": [
"The Office"
],
"_self": "https://api.memegen.link/templates/michael-scott"
},
{
"id": "midwit",
"name": "Midwit",
"lines": 3,
"overlays": 1,
"styles": [
"default"
],
"blank": "https://api.memegen.link/images/midwit.jpg",
"example": {
"text": [
"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"
],
"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"
},
"source": "https://knowyourmeme.com/memes/iq-bell-curve-midwit",
"keywords": [
"IQ Bell Curve / Midwit"
],
"_self": "https://api.memegen.link/templates/midwit"
},
{
"id": "millers",
"name": "You Guys Are Getting Paid?",
"lines": 4,
"overlays": 0,
"styles": [],
"blank": "https://api.memegen.link/images/millers.jpg",
"example": {
"text": [
"",
"You are making 500 thousand dollars and you were only gonna pay me 30?",
"You're getting 30 grand? I'm getting a thousand!",
"You guys are getting paid?"
],
"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"
},
"source": "https://knowyourmeme.com/photos/1712302-you-guys-are-getting-paid",
"keywords": [],
"_self": "https://api.memegen.link/templates/millers"
},
{
"id": "mini-keanu",
"name": "Mini Keanu Reeves",
"lines": 2,
"overlays": 0,
"styles": [],
"blank": "https://api.memegen.link/images/mini-keanu.jpg",
"example": {
"text": [
"me waiting for mom to stop talking on the phone",
"so I can tell her my Pokemon evolved"
],
"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"
},
"source": "https://knowyourmeme.com/memes/mini-keanu-reeves",
"keywords": [],
"_self": "https://api.memegen.link/templates/mini-keanu"
},
{
"id": "mmm",
"name": "Minor Mistake Marvin",
"lines": 2,
"overlays": 1,
"styles": [
"default"
],
"blank": "https://api.memegen.link/images/mmm.jpg",
"example": {
"text": [
"Puts ice cream back",
"Into the refrigerator"
],
"url": "https://api.memegen.link/images/mmm/Puts_ice_cream_back/Into_the_refrigerator.jpg"
},
"source": "http://knowyourmeme.com/memes/minor-mistake-marvin",
"keywords": [],
"_self": "https://api.memegen.link/templates/mmm"
},
{
"id": "money",
"name": "Shut Up and Take My Money!",
"lines": 2,
"overlays": 1,
"styles": [
"animated",
"default"
],
"blank": "https://api.memegen.link/images/money.jpg",
"example": {
"text": [
"shut up and",
"take my money!"
],
"url": "https://api.memegen.link/images/money/shut_up_and/take_my_money!.webp"
},
"source": "http://knowyourmeme.com/memes/shut-up-and-take-my-money",
"keywords": [
"Futurama",
"Philip J. Fry"
],
"_self": "https://api.memegen.link/templates/money"
},
{
"id": "mordor",
"name": "One Does Not Simply Walk into Mordor",
"lines": 2,
"overlays": 0,
"styles": [],
"blank": "https://api.memegen.link/images/mordor.jpg",
"example": {
"text": [
"one does not simply",
"walk into mordor"
],
"url": "https://api.memegen.link/images/mordor/one_does_not_simply/walk_into_mordor.jpg"
},
"source": "http://knowyourmeme.com/memes/one-does-not-simply-walk-into-mordor",
"keywords": [],
"_self": "https://api.memegen.link/templates/mordor"
},
{
"id": "morpheus",
"name": "Matrix Morpheus",
"lines": 2,
"overlays": 0,
"styles": [],
"blank": "https://api.memegen.link/images/morpheus.jpg",
"example": {
"text": [
"what if I told you that",
"reality was an illusion?"
],
"url": "https://api.memegen.link/images/morpheus/what_if_I_told_you_that/reality_was_an_illusion~q.jpg"
},
"source": "http://knowyourmeme.com/memes/matrix-morpheus",
"keywords": [],
"_self": "https://api.memegen.link/templates/morpheus"
},
{
"id": "mouth",
"name": "Woman Holding Dog's Mouth",
"lines": 3,
"overlays": 0,
"styles": [],
"blank": "https://api.memegen.link/images/mouth.jpg",
"example": {
"text": [
"Sales Team presenting the solution in PowerPoint",
"Excited Customer",
"Engineering Team knowing the solution is not technically possible"
],
"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"
},
"source": "https://knowyourmeme.com/memes/women-holding-dogs-mouth",
"keywords": [],
"_self": "https://api.memegen.link/templates/mouth"
},
{
"id": "mw",
"name": "I Guarantee It",
"lines": 2,
"overlays": 0,
"styles": [],
"blank": "https://api.memegen.link/images/mw.jpg",
"example": {
"text": [
"you're gonna like the way you look",
"i guarantee it"
],
"url": "https://api.memegen.link/images/mw/you're_gonna_like_the_way_you_look/i_guarantee_it.jpg"
},
"source": "http://knowyourmeme.com/memes/george-zimmer-i-guarantee-it",
"keywords": [],
"_self": "https://api.memegen.link/templates/mw"
},
{
"id": "nails",
"name": "Guy Hammering Nails Into Sand",
"lines": 3,
"overlays": 0,
"styles": [],
"blank": "https://api.memegen.link/images/nails.jpg",
"example": {
"text": [
"Humanity",
"Language",
"The inherently indescribably nature of the universe"
],
"url": "https://api.memegen.link/images/nails/Humanity/Language/The_inherently_indescribably_nature_of_the_universe.jpg"
},
"source": "https://keepmeme.com/meme/when-the-boss-coming-and-you-need-to-pretend-doing-something-hammering-nails-into-the-sand-beach-meme",
"keywords": [],
"_self": "https://api.memegen.link/templates/nails"
},
{
"id": "nice",
"name": "So I Got That Goin' For Me, Which is Nice",
"lines": 2,
"overlays": 0,
"styles": [],
"blank": "https://api.memegen.link/images/nice.jpg",
"example": {
"text": [
"",
"so i got that goin' for me, which is nice"
],
"url": "https://api.memegen.link/images/nice/_/so_i_got_that_goin'_for_me,_which_is_nice.jpg"
},
"source": "http://knowyourmeme.com/memes/so-i-got-that-goin-for-me-which-is-nice",
"keywords": [],
"_self": "https://api.memegen.link/templates/nice"
},
{
"id": "noah",
"name": "What the Hell is This?",
"lines": 4,
"overlays": 1,
"styles": [
"default"
],
"blank": "https://api.memegen.link/images/noah.jpg",
"example": {
"text": [
"Street",
"Road",
"Stroad",
"What the hell is this?"
],
"url": "https://api.memegen.link/images/noah/Street/Road/Stroad/What_the_hell_is_this~q.jpg"
},
"source": null,
"keywords": [
"Family Guy Noah"
],
"_self": "https://api.memegen.link/templates/noah"
},
{
"id": "noidea",
"name": "I Have No Idea What I'm Doing",
"lines": 2,
"overlays": 0,
"styles": [],
"blank": "https://api.memegen.link/images/noidea.jpg",
"example": {
"text": [
"i have no idea",
"what i'm doing"
],
"url": "https://api.memegen.link/images/noidea/i_have_no_idea/what_i'm_doing.jpg"
},
"source": "http://knowyourmeme.com/memes/i-have-no-idea-what-i-m-doing",
"keywords": [],
"_self": "https://api.memegen.link/templates/noidea"
},
{
"id": "ntot",
"name": "No Take, Only Throw",
"lines": 3,
"overlays": 0,
"styles": [],
"blank": "https://api.memegen.link/images/ntot.jpg",
"example": {
"text": [
"Pls throw??",
"NO TAKE!!",
"ONLY THROW"
],
"url": "https://api.memegen.link/images/ntot/Pls_throw~q~q/NO_TAKE!!/ONLY_THROW.jpg"
},
"source": "https://knowyourmeme.com/memes/no-take-only-throw",
"keywords": [],
"_self": "https://api.memegen.link/templates/ntot"
},
{
"id": "oag",
"name": "Overly Attached Girlfriend",
"lines": 2,
"overlays": 0,
"styles": [],
"blank": "https://api.memegen.link/images/oag.jpg",
"example": {
"text": [
"i know you received my email",
"because i checked your inbox"
],
"url": "https://api.memegen.link/images/oag/i_know_you_received_my_email/because_i_checked_your_inbox.jpg"
},
"source": "http://knowyourmeme.com/memes/overly-attached-girlfriend",
"keywords": [],
"_self": "https://api.memegen.link/templates/oag"
},
{
"id": "officespace",
"name": "That Would Be Great",
"lines": 2,
"overlays": 0,
"styles": [],
"blank": "https://api.memegen.link/images/officespace.jpg",
"example": {
"text": [
"yeah...",
"that'd be great"
],
"url": "https://api.memegen.link/images/officespace/yeah.../that'd_be_great.jpg"
},
"source": "http://knowyourmeme.com/memes/that-would-be-great",
"keywords": [],
"_self": "https://api.memegen.link/templates/officespace"
},
{
"id": "older",
"name": "An Older Code Sir, But It Checks Out",
"lines": 2,
"overlays": 0,
"styles": [],
"blank": "https://api.memegen.link/images/older.jpg",
"example": {
"text": [
"it's an older meme sir",
"but it checks out"
],
"url": "https://api.memegen.link/images/older/it's_an_older_meme_sir/but_it_checks_out.jpg"
},
"source": "http://knowyourmeme.com/memes/its-an-older-meme-but-it-checks-out",
"keywords": [],
"_self": "https://api.memegen.link/templates/older"
},
{
"id": "oprah",
"name": "Oprah You Get a Car",
"lines": 2,
"overlays": 1,
"styles": [
"animated",
"default"
],
"blank": "https://api.memegen.link/images/oprah.jpg",
"example": {
"text": [
"Top Line",
"Bottom Line"
],
"url": "https://api.memegen.link/images/oprah/Top_Line/Bottom_Line.webp"
},
"source": "http://knowyourmeme.com/memes/oprah-you-get-a-car",
"keywords": [
"everybody gets",
"you win"
],
"_self": "https://api.memegen.link/templates/oprah"
},
{
"id": "panik-kalm-panik",
"name": "Panik Kalm Panik",
"lines": 3,
"overlays": 1,
"styles": [
"default"
],
"blank": "https://api.memegen.link/images/panik-kalm-panik.jpg",
"example": {
"text": [
"You hear a sound downstairs",
"It's just a cat",
"You don't have a cat"
],
"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"
},
"source": "https://knowyourmeme.com/memes/panik-kalm",
"keywords": [],
"_self": "https://api.memegen.link/templates/panik-kalm-panik"
},
{
"id": "patrick",
"name": "Push it somewhere else Patrick",
"lines": 2,
"overlays": 2,
"styles": [
"animated",
"default"
],
"blank": "https://api.memegen.link/images/patrick.jpg",
"example": {
"text": [
"why don't we take all the memes",
"and put them on memegen"
],
"url": "https://api.memegen.link/images/patrick/why_don't_we_take_all_the_memes/and_put_them_on_memegen.webp"
},
"source": "http://knowyourmeme.com/memes/push-it-somewhere-else-patrick",
"keywords": [],
"_self": "https://api.memegen.link/templates/patrick"
},
{
"id": "perfection",
"name": "Perfection",
"lines": 6,
"overlays": 3,
"styles": [
"default"
],
"blank": "https://api.memegen.link/images/perfection.jpg",
"example": {
"text": [
"Sebastian Shaw",
"I prefer the real Darth Vader.",
"Hayden Christensen",
"I said, the real Darth Vader.",
"Jake Lloyd",
"Perfection."
],
"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"
},
"source": "https://knowyourmeme.com/memes/perfection",
"keywords": [
"I Prefer the Real Raven"
],
"_self": "https://api.memegen.link/templates/perfection"
},
{
"id": "persian",
"name": "Persian Cat Room Guardian",
"lines": 2,
"overlays": 0,
"styles": [],
"blank": "https://api.memegen.link/images/persian.jpg",
"example": {
"text": [
"when you wake up from a nap",
"and your mom starts yelling at you"
],
"url": "https://api.memegen.link/images/persian/when_you_wake_up_from_a_nap/and_your_mom_starts_yelling_at_you.jpg"
},
"source": "https://knowyourmeme.com/memes/persian-cat-room-guardian",
"keywords": [],
"_self": "https://api.memegen.link/templates/persian"
},
{
"id": "philosoraptor",
"name": "Philosoraptor",
"lines": 2,
"overlays": 0,
"styles": [],
"blank": "https://api.memegen.link/images/philosoraptor.jpg",
"example": {
"text": [
"if the earth is the third planet from the sun",
"then isn't every country a third world country?"
],
"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"
},
"source": "http://knowyourmeme.com/memes/philosoraptor",
"keywords": [],
"_self": "https://api.memegen.link/templates/philosoraptor"
},
{
"id": "pigeon",
"name": "Is This a Pigeon?",
"lines": 3,
"overlays": 1,
"styles": [
"default"
],
"blank": "https://api.memegen.link/images/pigeon.jpg",
"example": {
"text": [
"Engineer",
"PowerPoint",
"Is this Photoshop?"
],
"url": "https://api.memegen.link/images/pigeon/Engineer/PowerPoint/Is_this_Photoshop~q.jpg"
},
"source": "https://knowyourmeme.com/memes/is-this-a-pigeon",
"keywords": [],
"_self": "https://api.memegen.link/templates/pigeon"
},
{
"id": "pooh",
"name": "Tuxedo Winnie the Pooh",
"lines": 2,
"overlays": 2,
"styles": [
"default"
],
"blank": "https://api.memegen.link/images/pooh.jpg",
"example": {
"text": [
"Burger King",
"The Monarch of Hamburg"
],
"url": "https://api.memegen.link/images/pooh/Burger_King/The_Monarch_of_Hamburg.jpg"
},
"source": "https://knowyourmeme.com/memes/tuxedo-winnie-the-pooh",
"keywords": [],
"_self": "https://api.memegen.link/templates/pooh"
},
{
"id": "pool",
"name": "Mother Ignoring Kid Drowning In A Pool",
"lines": 3,
"overlays": 3,
"styles": [
"default"
],
"blank": "https://api.memegen.link/images/pool.jpg",
"example": {
"text": [
"Posts in Hot",
"Posts in New",
"Redditors"
],
"url": "https://api.memegen.link/images/pool/Posts_in_Hot/Posts_in_New/Redditors.jpg"
},
"source": "https://knowyourmeme.com/memes/mother-ignoring-kid-drowning-in-a-pool",
"keywords": [
"my cousins learning to swim"
],
"_self": "https://api.memegen.link/templates/pool"
},
{
"id": "prop3",
"name": "Too Confusing, Too Extreme",
"lines": 1,
"overlays": 0,
"styles": [],
"blank": "https://api.memegen.link/images/prop3.jpg",
"example": {
"text": [
"Zipper Merging"
],
"url": "https://api.memegen.link/images/prop3/Zipper_Merging.jpg"
},
"source": "https://wfgr.com/too-extreme-state-political-catch-phrase-gets-roasted-online/",
"keywords": [
"Michigan Proposal 3"
],
"_self": "https://api.memegen.link/templates/prop3"
},
{
"id": "ptj",
"name": "Phoebe Teaching Joey",
"lines": 8,
"overlays": 0,
"styles": [],
"blank": "https://api.memegen.link/images/ptj.jpg",
"example": {
"text": [
"Cast it",
"Cast it",
"into",
"into",
"the fire",
"the fire",
"Cast it into the fire.",
"Keep the Ring of Power!"
],
"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"
},
"source": "https://knowyourmeme.com/photos/1846826-phoebe-teaching-joey",
"keywords": [],
"_self": "https://api.memegen.link/templates/ptj"
},
{
"id": "puffin",
"name": "Unpopular opinion puffin",
"lines": 2,
"overlays": 0,
"styles": [],
"blank": "https://api.memegen.link/images/puffin.jpg",
"example": {
"text": [
"I don't find Mitch Hedberg",
"all the funny"
],
"url": "https://api.memegen.link/images/puffin/I_don't_find_Mitch_Hedberg/all_the_funny.jpg"
},
"source": "http://knowyourmeme.com/memes/unpopular-opinion-puffin",
"keywords": [],
"_self": "https://api.memegen.link/templates/puffin"
},
{
"id": "red",
"name": "Oh, Is That What We're Going to Do Today?",
"lines": 2,
"overlays": 0,
"styles": [],
"blank": "https://api.memegen.link/images/red.jpg",
"example": {
"text": [
"oh, is that what we're going to do today?",
"we're going to fight?"
],
"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"
},
"source": "https://www.imdb.com/title/tt0720046/",
"keywords": [],
"_self": "https://api.memegen.link/templates/red"
},
{
"id": "regret",
"name": "I Immediately Regret This Decision!",
"lines": 2,
"overlays": 0,
"styles": [],
"blank": "https://api.memegen.link/images/regret.jpg",
"example": {
"text": [
"",
"i immediately regret this decision"
],
"url": "https://api.memegen.link/images/regret/_/i_immediately_regret_this_decision.jpg"
},
"source": "https://www.youtube.com/watch?v=gd9ltJGykYc",
"keywords": [],
"_self": "https://api.memegen.link/templates/regret"
},
{
"id": "remembers",
"name": "Pepperidge Farm Remembers",
"lines": 2,
"overlays": 1,
"styles": [
"default"
],
"blank": "https://api.memegen.link/images/remembers.jpg",
"example": {
"text": [
"remember this meme?",
"pepperidge farm remembers"
],
"url": "https://api.memegen.link/images/remembers/remember_this_meme~q/pepperidge_farm_remembers.jpg"
},
"source": "http://knowyourmeme.com/memes/pepperidge-farm-remembers",
"keywords": [],
"_self": "https://api.memegen.link/templates/remembers"
},
{
"id": "reveal",
"name": "Scooby Doo Reveal",
"lines": 4,
"overlays": 2,
"styles": [
"default"
],
"blank": "https://api.memegen.link/images/reveal.jpg",
"example": {
"text": [
"Villain",
"Let's see who you really are...",
"Protagonist",
"I knew it!"
],
"url": "https://api.memegen.link/images/reveal/Villain/Let's_see_who_you_really_are.../Protagonist/I_knew_it!.jpg"
},
"source": "https://knowyourmeme.com/memes/lets-see-who-this-really-is",
"keywords": [],
"_self": "https://api.memegen.link/templates/reveal"
},
{
"id": "right",
"name": "Anakin and Padme Change the World For the Better",
"lines": 5,
"overlays": 0,
"styles": [],
"blank": "https://api.memegen.link/images/right.jpg",
"example": {
"text": [
"Senior Developer",
"Junior Developer",
"Put it in the backlog.",
"So we can fix it later, right?",
"So we can fix it later, right?"
],
"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"
},
"source": "https://www.reddit.com/r/MemeTemplatesOfficial/comments/nia6wu/im_going_to_change_the_world_for_the_better_right/",
"keywords": [],
"_self": "https://api.memegen.link/templates/right"
},
{
"id": "rollsafe",
"name": "Roll Safe",
"lines": 2,
"overlays": 1,
"styles": [
"animated",
"config.61caca6063a240cf99d74abda35b148557f37998",
"default",
"default.top",
"default.top.top"
],
"blank": "https://api.memegen.link/images/rollsafe.jpg",
"example": {
"text": [
"can't get fired",
"if you don't have a job"
],
"url": "https://api.memegen.link/images/rollsafe/can't_get_fired/if_you_don't_have_a_job.webp"
},
"source": "http://knowyourmeme.com/memes/roll-safe",
"keywords": [],
"_self": "https://api.memegen.link/templates/rollsafe"
},
{
"id": "sad-biden",
"name": "Sad Joe Biden",
"lines": 2,
"overlays": 1,
"styles": [
"default",
"down",
"scowl",
"window"
],
"blank": "https://api.memegen.link/images/sad-biden.jpg",
"example": {
"text": [
"sad joe biden",
"doesn't think you'll vote"
],
"url": "https://api.memegen.link/images/sad-biden/sad_joe_biden/doesn't_think_you'll_vote.jpg"
},
"source": "http://knowyourmeme.com/memes/sad-joe-biden",
"keywords": [],
"_self": "https://api.memegen.link/templates/sad-biden"
},
{
"id": "sad-boehner",
"name": "Sad John Boehner",
"lines": 2,
"overlays": 1,
"styles": [
"default",
"frown",
"really",
"sad",
"what"
],
"blank": "https://api.memegen.link/images/sad-boehner.jpg",
"example": {
"text": [
"sad john boehner",
"doesn't think you'll vote"
],
"url": "https://api.memegen.link/images/sad-boehner/sad_john_boehner/doesn't_think_you'll_vote.jpg"
},
"source": "https://en.wikipedia.org/wiki/John_Boehner",
"keywords": [],
"_self": "https://api.memegen.link/templates/sad-boehner"
},
{
"id": "sad-bush",
"name": "Sad George Bush",
"lines": 2,
"overlays": 1,
"styles": [
"default",
"facebook",
"nervous",
"unsure",
"upset"
],
"blank": "https://api.memegen.link/images/sad-bush.jpg",
"example": {
"text": [
"sad george bush",
"doesn't think you'll vote"
],
"url": "https://api.memegen.link/images/sad-bush/sad_george_bush/doesn't_think_you'll_vote.jpg"
},
"source": "http://knowyourmeme.com/memes/sad-joe-biden",
"keywords": [],
"_self": "https://api.memegen.link/templates/sad-bush"
},
{
"id": "sad-clinton",
"name": "Sad Bill Clinton",
"lines": 2,
"overlays": 1,
"styles": [
"ashamed",
"default",
"frown",
"nervous",
"sad"
],
"blank": "https://api.memegen.link/images/sad-clinton.jpg",
"example": {
"text": [
"sad bill clinton",
"doesn't think you'll vote"
],
"url": "https://api.memegen.link/images/sad-clinton/sad_bill_clinton/doesn't_think_you'll_vote.jpg"
},
"source": "https://en.wikipedia.org/wiki/Bill_Clinton",
"keywords": [],
"_self": "https://api.memegen.link/templates/sad-clinton"
},
{
"id": "sad-obama",
"name": "Sad Barack Obama",
"lines": 2,
"overlays": 1,
"styles": [
"bow",
"default",
"down",
"frown",
"mad",
"really"
],
"blank": "https://api.memegen.link/images/sad-obama.jpg",
"example": {
"text": [
"sad barack obama",
"doesn't think you'll vote"
],
"url": "https://api.memegen.link/images/sad-obama/sad_barack_obama/doesn't_think_you'll_vote.jpg"
},
"source": "http://knowyourmeme.com/memes/sad-joe-biden",
"keywords": [],
"_self": "https://api.memegen.link/templates/sad-obama"
},
{
"id": "sadfrog",
"name": "Feels Bad Man",
"lines": 2,
"overlays": 0,
"styles": [],
"blank": "https://api.memegen.link/images/sadfrog.jpg",
"example": {
"text": [
"",
"feels bad man"
],
"url": "https://api.memegen.link/images/sadfrog/_/feels_bad_man.jpg"
},
"source": "http://knowyourmeme.com/memes/feels-bad-man-sad-frog",
"keywords": [
"Sad Frog"
],
"_self": "https://api.memegen.link/templates/sadfrog"
},
{
"id": "saltbae",
"name": "Salt Bae",
"lines": 2,
"overlays": 0,
"styles": [],
"blank": "https://api.memegen.link/images/saltbae.jpg",
"example": {
"text": [
"",
"pours salt on it"
],
"url": "https://api.memegen.link/images/saltbae/_/pours_salt_on_it.jpg"
},
"source": "http://knowyourmeme.com/memes/saltbae",
"keywords": [],
"_self": "https://api.memegen.link/templates/saltbae"
},
{
"id": "same",
"name": "They're The Same Picture",
"lines": 3,
"overlays": 3,
"styles": [
"default"
],
"blank": "https://api.memegen.link/images/same.jpg",
"example": {
"text": [
"\u03c0",
"3",
"The Bible"
],
"url": "https://api.memegen.link/images/same/\u03c0/3/The_Bible.jpg"
},
"source": "https://knowyourmeme.com/memes/theyre-the-same-picture",
"keywords": [],
"_self": "https://api.memegen.link/templates/same"
},
{
"id": "sarcasticbear",
"name": "Sarcastic Bear",
"lines": 2,
"overlays": 0,
"styles": [],
"blank": "https://api.memegen.link/images/sarcasticbear.jpg",
"example": {
"text": [
"i'm so sorry",
"i haven't memorized the internet"
],
"url": "https://api.memegen.link/images/sarcasticbear/i'm_so_sorry/i_haven't_memorized_the_internet.jpg"
},
"source": "http://knowyourmeme.com/memes/sarcastic-bear",
"keywords": [],
"_self": "https://api.memegen.link/templates/sarcasticbear"
},
{
"id": "say",
"name": "Say the Line, Bart!",
"lines": 2,
"overlays": 1,
"styles": [
"default"
],
"blank": "https://api.memegen.link/images/say.jpg",
"example": {
"text": [
"Say the line, Senior Engineer!",
"It depends."
],
"url": "https://api.memegen.link/images/say/Say_the_line,_Senior_Engineer!/It_depends..jpg"
},
"source": "https://knowyourmeme.com/memes/say-the-line-bart",
"keywords": [
"The Simpsons",
"Bart Simpson"
],
"_self": "https://api.memegen.link/templates/say"
},
{
"id": "sb",
"name": "Scumbag Brain",
"lines": 2,
"overlays": 0,
"styles": [],
"blank": "https://api.memegen.link/images/sb.jpg",
"example": {
"text": [
"remembers the face",
"but not the name"
],
"url": "https://api.memegen.link/images/sb/remembers_the_face/but_not_the_name.jpg"
},
"source": "http://knowyourmeme.com/memes/scumbag-brain",
"keywords": [],
"_self": "https://api.memegen.link/templates/sb"
},
{
"id": "scc",
"name": "Sudden Clarity Clarence",
"lines": 2,
"overlays": 0,
"styles": [],
"blank": "https://api.memegen.link/images/scc.jpg",
"example": {
"text": [
"oh my god",
"those weren't listerine breath strips"
],
"url": "https://api.memegen.link/images/scc/oh_my_god/those_weren't_listerine_breath_strips.jpg"
},
"source": "http://knowyourmeme.com/memes/sudden-clarity-clarence",
"keywords": [],
"_self": "https://api.memegen.link/templates/scc"
},
{
"id": "seagull",
"name": "Inhaling Seagull",
"lines": 2,
"overlays": 0,
"styles": [],
"blank": "https://api.memegen.link/images/seagull.jpg",
"example": {
"text": [
"some",
"BODY ONCE TOLD ME THE THE WORLD WAS GONNA ROLL ME!!"
],
"url": "https://api.memegen.link/images/seagull/some/BODY_ONCE_TOLD_ME_THE_THE_WORLD_WAS_GONNA_ROLL_ME!!.jpg"
},
"source": "https://knowyourmeme.com/memes/inhaling-seagull",
"keywords": [],
"_self": "https://api.memegen.link/templates/seagull"
},
{
"id": "sf",
"name": "Sealed Fate",
"lines": 2,
"overlays": 0,
"styles": [],
"blank": "https://api.memegen.link/images/sf.jpg",
"example": {
"text": [
"i accidentally used a swear word",
"and i know my mom heard it from the other room"
],
"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"
},
"source": "https://www.reddit.com/r/AdviceAnimals/comments/3fenos/i_like_the_idea_of_the_impending_doom_seal_i_hope/ctnxw3k",
"keywords": [],
"_self": "https://api.memegen.link/templates/sf"
},
{
"id": "sk",
"name": "Skeptical Third World Kid",
"lines": 2,
"overlays": 0,
"styles": [],
"blank": "https://api.memegen.link/images/sk.jpg",
"example": {
"text": [
"you finished your plate",
"because i was starving?"
],
"url": "https://api.memegen.link/images/sk/you_finished_your_plate/because_i_was_starving~q.jpg"
},
"source": "http://knowyourmeme.com/memes/third-world-success",
"keywords": [],
"_self": "https://api.memegen.link/templates/sk"
},
{
"id": "ski",
"name": "Super Cool Ski Instructor",
"lines": 2,
"overlays": 0,
"styles": [],
"blank": "https://api.memegen.link/images/ski.jpg",
"example": {
"text": [
"",
"you're gonna have a bad time"
],
"url": "https://api.memegen.link/images/ski/_/you're_gonna_have_a_bad_time.jpg"
},
"source": "http://knowyourmeme.com/memes/super-cool-ski-instructor",
"keywords": [],
"_self": "https://api.memegen.link/templates/ski"
},
{
"id": "slap",
"name": "Will Smith Slapping Chris Rock",
"lines": 2,
"overlays": 2,
"styles": [
"default"
],
"blank": "https://api.memegen.link/images/slap.jpg",
"example": {
"text": [
"Me Trying to Enjoy the Weekend",
"Monday"
],
"url": "https://api.memegen.link/images/slap/Me_Trying_to_Enjoy_the_Weekend/Monday.jpg"
},
"source": "https://knowyourmeme.com/memes/will-smith-slapping-chris-rock",
"keywords": [],
"_self": "https://api.memegen.link/templates/slap"
},
{
"id": "snek",
"name": "Skeptical Snake",
"lines": 2,
"overlays": 0,
"styles": [],
"blank": "https://api.memegen.link/images/snek.jpg",
"example": {
"text": [
"when you already checked that one leaf",
"and it starts moving"
],
"url": "https://api.memegen.link/images/snek/when_you_already_checked_that_one_leaf/and_it_starts_moving.jpg"
},
"source": "https://www.reddit.com/r/JoeRogan/comments/5kga5k/skeptical_snake/",
"keywords": [],
"_self": "https://api.memegen.link/templates/snek"
},
{
"id": "soa",
"name": "Seal of Approval",
"lines": 2,
"overlays": 0,
"styles": [],
"blank": "https://api.memegen.link/images/soa.jpg",
"example": {
"text": [
"first wipe",
"clean toiletpaper"
],
"url": "https://api.memegen.link/images/soa/first_wipe/clean_toiletpaper.jpg"
},
"source": "http://knowyourmeme.com/memes/seal-of-approval",
"keywords": [],
"_self": "https://api.memegen.link/templates/soa"
},
{
"id": "sohappy",
"name": "I Would Be So Happy",
"lines": 2,
"overlays": 0,
"styles": [],
"blank": "https://api.memegen.link/images/sohappy.jpg",
"example": {
"text": [
"if i could use this meme",
"i would be so happy"
],
"url": "https://api.memegen.link/images/sohappy/if_i_could_use_this_meme/i_would_be_so_happy.jpg"
},
"source": "https://www.youtube.com/watch?v=z_17RHGKNTY",
"keywords": [],
"_self": "https://api.memegen.link/templates/sohappy"
},
{
"id": "sohot",
"name": "So Hot Right Now",
"lines": 2,
"overlays": 0,
"styles": [],
"blank": "https://api.memegen.link/images/sohot.jpg",
"example": {
"text": [
"this meme is",
"so hot right now"
],
"url": "https://api.memegen.link/images/sohot/this_meme_is/so_hot_right_now.jpg"
},
"source": "https://www.youtube.com/watch?v=QizsJQNIKhc",
"keywords": [],
"_self": "https://api.memegen.link/templates/sohot"
},
{
"id": "soup-nazi",
"name": "No Soup for You",
"lines": 2,
"overlays": 0,
"styles": [],
"blank": "https://api.memegen.link/images/soup-nazi.jpg",
"example": {
"text": [
"no soup for you!"
],
"url": "https://api.memegen.link/images/soup-nazi/no_soup_for_you!.jpg"
},
"source": "https://knowyourmeme.com/memes/no-soup-for-you-soup-nazi",
"keywords": [
"Seinfeld",
"Soup Nazi"
],
"_self": "https://api.memegen.link/templates/soup-nazi"
},
{
"id": "sparta",
"name": "This is Sparta!",
"lines": 2,
"overlays": 0,
"styles": [],
"blank": "https://api.memegen.link/images/sparta.jpg",
"example": {
"text": [
"this. is.",
"sparta!"
],
"url": "https://api.memegen.link/images/sparta/this._is./sparta!.jpg"
},
"source": "https://www.youtube.com/watch?v=QkWS9PiXekE",
"keywords": [],
"_self": "https://api.memegen.link/templates/sparta"
},
{
"id": "spiderman",
"name": "Spider-Man Pointing at Spider-Man",
"lines": 2,
"overlays": 0,
"styles": [],
"blank": "https://api.memegen.link/images/spiderman.jpg",
"example": {
"text": [
"me pointing at you",
"you pointing at me"
],
"url": "https://api.memegen.link/images/spiderman/me_pointing_at_you/you_pointing_at_me.jpg"
},
"source": "https://knowyourmeme.com/memes/spider-man-pointing-at-spider-man",
"keywords": [],
"_self": "https://api.memegen.link/templates/spiderman"
},
{
"id": "spirit",
"name": "Fake Spirit Halloween Costume",
"lines": 5,
"overlays": 1,
"styles": [
"default"
],
"blank": "https://api.memegen.link/images/spirit.jpg",
"example": {
"text": [
"My Dad",
"Includes:",
"- Nothing",
"- Nothing",
"- Nothing"
],
"url": "https://api.memegen.link/images/spirit/My_Dad/Includes:/--_Nothing/--_Nothing/--_Nothing.jpg"
},
"source": "https://knowyourmeme.com/photos/2466845-fake-spirit-halloween-costumes",
"keywords": [
"adult size costume"
],
"_self": "https://api.memegen.link/templates/spirit"
},
{
"id": "spongebob",
"name": "Mocking Spongebob",
"lines": 2,
"overlays": 0,
"styles": [],
"blank": "https://api.memegen.link/images/spongebob.jpg",
"example": {
"text": [
"BF: I don't even know her like that",
"Me: i DoN'T eVeN KnOw HeR lIkE tHaT"
],
"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"
},
"source": "http://knowyourmeme.com/memes/mocking-spongebob",
"keywords": [],
"_self": "https://api.memegen.link/templates/spongebob"
},
{
"id": "ss",
"name": "Scumbag Steve",
"lines": 2,
"overlays": 0,
"styles": [],
"blank": "https://api.memegen.link/images/ss.jpg",
"example": {
"text": [
"needs a place to crash",
"never leaves"
],
"url": "https://api.memegen.link/images/ss/needs_a_place_to_crash/never_leaves.jpg"
},
"source": "http://knowyourmeme.com/memes/scumbag-steve",
"keywords": [],
"_self": "https://api.memegen.link/templates/ss"
},
{
"id": "stew",
"name": "Baby, You've Got a Stew Going",
"lines": 2,
"overlays": 0,
"styles": [],
"blank": "https://api.memegen.link/images/stew.jpg",
"example": {
"text": [
"",
"baby, you've got a stew going!"
],
"url": "https://api.memegen.link/images/stew/_/baby,_you've_got_a_stew_going!.jpg"
},
"source": "https://www.youtube.com/watch?v=Sr2PlqXw03Y",
"keywords": [],
"_self": "https://api.memegen.link/templates/stew"
},
{
"id": "stonks",
"name": "Stonks",
"lines": 2,
"overlays": 0,
"styles": [],
"blank": "https://api.memegen.link/images/stonks.jpg",
"example": {
"text": [
"",
"stonks"
],
"url": "https://api.memegen.link/images/stonks/_/stonks.jpg"
},
"source": "https://knowyourmeme.com/memes/stonks",
"keywords": [],
"_self": "https://api.memegen.link/templates/stonks"
},
{
"id": "stop",
"name": "Stop It Patrick You're Scaring Him",
"lines": 6,
"overlays": 0,
"styles": [],
"blank": "https://api.memegen.link/images/stop.jpg",
"example": {
"text": [
"I'm claustrophobic.",
"What does \"claustrophobic\" mean?",
"It means he's afraid of Santa Claus.",
"No, it doesn't.",
"HO-HO-HO",
"Stop it, Patrick, you're scaring him!"
],
"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"
},
"source": "https://knowyourmeme.com/memes/stop-it-patrick-youre-scaring-him",
"keywords": [],
"_self": "https://api.memegen.link/templates/stop"
},
{
"id": "stop-it",
"name": "Stop It, Get Some Help",
"lines": 2,
"overlays": 0,
"styles": [],
"blank": "https://api.memegen.link/images/stop-it.jpg",
"example": {
"text": [
"stop it",
"get some help"
],
"url": "https://api.memegen.link/images/stop-it/stop_it/get_some_help.jpg"
},
"source": "https://knowyourmeme.com/memes/stop-it-get-some-help",
"keywords": [],
"_self": "https://api.memegen.link/templates/stop-it"
},
{
"id": "success",
"name": "Success Kid",
"lines": 2,
"overlays": 0,
"styles": [],
"blank": "https://api.memegen.link/images/success.jpg",
"example": {
"text": [
"don't know a question on the test",
"answer is in another question"
],
"url": "https://api.memegen.link/images/success/don't_know_a_question_on_the_test/answer_is_in_another_question.jpg"
},
"source": "http://knowyourmeme.com/memes/success-kid-i-hate-sandcastles",
"keywords": [],
"_self": "https://api.memegen.link/templates/success"
},
{
"id": "tenguy",
"name": "10 Guy",
"lines": 2,
"overlays": 0,
"styles": [],
"blank": "https://api.memegen.link/images/tenguy.jpg",
"example": {
"text": [
"can't read the words on the menu",
"turns down the radio"
],
"url": "https://api.memegen.link/images/tenguy/can't_read_the_words_on_the_menu/turns_down_the_radio.jpg"
},
"source": "http://knowyourmeme.com/memes/10-guy",
"keywords": [],
"_self": "https://api.memegen.link/templates/tenguy"
},
{
"id": "toohigh",
"name": "The Rent Is Too Damn High",
"lines": 2,
"overlays": 0,
"styles": [],
"blank": "https://api.memegen.link/images/toohigh.jpg",
"example": {
"text": [
"the rent is",
"too damn high"
],
"url": "https://api.memegen.link/images/toohigh/the_rent_is/too_damn_high.jpg"
},
"source": "http://knowyourmeme.com/memes/the-rent-is-too-damn-high-jimmy-mcmillan",
"keywords": [],
"_self": "https://api.memegen.link/templates/toohigh"
},
{
"id": "touch",
"name": "Principal Skinner",
"lines": 2,
"overlays": 0,
"styles": [],
"blank": "https://api.memegen.link/images/touch.jpg",
"example": {
"text": [
"Am I so out of touch?",
"No, it's the children who are wrong."
],
"url": "https://api.memegen.link/images/touch/Am_I_so_out_of_touch~q/No,_it's_the_children_who_are_wrong..jpg"
},
"source": "https://knowyourmeme.com/memes/am-i-out-of-touch",
"keywords": [
"Am I Out Of Touch?",
"The Simpsons"
],
"_self": "https://api.memegen.link/templates/touch"
},
{
"id": "tried",
"name": "At Least You Tried",
"lines": 2,
"overlays": 0,
"styles": [],
"blank": "https://api.memegen.link/images/tried.jpg",
"example": {
"text": [
"at least",
"you tried"
],
"url": "https://api.memegen.link/images/tried/at_least/you_tried.jpg"
},
"source": "http://knowyourmeme.com/memes/you-tried",
"keywords": [],
"_self": "https://api.memegen.link/templates/tried"
},
{
"id": "trump",
"name": "Donald Trump",
"lines": 2,
"overlays": 0,
"styles": [],
"blank": "https://api.memegen.link/images/trump.jpg",
"example": {
"text": [
"this is the best meme in the history of memes",
"maybe ever"
],
"url": "https://api.memegen.link/images/trump/this_is_the_best_meme_in_the_history_of_memes/maybe_ever.jpg"
},
"source": "https://knowyourmeme.com/memes/people/donald-trump",
"keywords": [],
"_self": "https://api.memegen.link/templates/trump"
},
{
"id": "ugandanknuck",
"name": "Ugandan Knuckles",
"lines": 2,
"overlays": 0,
"styles": [],
"blank": "https://api.memegen.link/images/ugandanknuck.jpg",
"example": {
"text": [
"",
"do u know de wey?"
],
"url": "https://api.memegen.link/images/ugandanknuck/_/do_u_know_de_wey~q.jpg"
},
"source": "http://knowyourmeme.com/memes/ugandan-knuckles",
"keywords": [],
"_self": "https://api.memegen.link/templates/ugandanknuck"
},
{
"id": "vince",
"name": "Vince McMahon Reaction",
"lines": 3,
"overlays": 3,
"styles": [
"default"
],
"blank": "https://api.memegen.link/images/vince.jpg",
"example": {
"text": [
"2-Day Delivery",
"Overnight Shipping",
"Shopping at the Store"
],
"url": "https://api.memegen.link/images/vince/2--Day_Delivery/Overnight_Shipping/Shopping_at_the_Store.jpg"
},
"source": "https://knowyourmeme.com/memes/vince-mcmahon-reaction",
"keywords": [],
"_self": "https://api.memegen.link/templates/vince"
},
{
"id": "wallet",
"name": "Patrick Star's Wallet",
"lines": 8,
"overlays": 1,
"styles": [
"default"
],
"blank": "https://api.memegen.link/images/wallet.jpg",
"example": {
"text": [
"Aren't you Patrick Star?",
"Yup.",
"And this is your ID?",
"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."
],
"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"
},
"source": "https://knowyourmeme.com/memes/patrick-stars-wallet",
"keywords": [],
"_self": "https://api.memegen.link/templates/wallet"
},
{
"id": "waygd",
"name": "What Are Ya Gonna Do?",
"lines": 2,
"overlays": 1,
"styles": [
"animated",
"default"
],
"blank": "https://api.memegen.link/images/waygd.jpg",
"example": {
"text": [
"yeah...",
"what are ya gonna do?"
],
"url": "https://api.memegen.link/images/waygd/yeah.../what_are_ya_gonna_do~q.webp"
},
"source": "https://www.youtube.com/watch?v=76URh0S7YIw",
"keywords": [],
"_self": "https://api.memegen.link/templates/waygd"
},
{
"id": "wddth",
"name": "We Don't Do That Here",
"lines": 2,
"overlays": 1,
"styles": [
"default"
],
"blank": "https://api.memegen.link/images/wddth.jpg",
"example": {
"text": [
"when someone calls your phone without warning",
"We don't do that here."
],
"url": "https://api.memegen.link/images/wddth/when_someone_calls_your_phone_without_warning/We_don't_do_that_here..jpg"
},
"source": "https://knowyourmeme.com/memes/we-dont-do-that-here",
"keywords": [
"Black Panther"
],
"_self": "https://api.memegen.link/templates/wddth"
},
{
"id": "whatyear",
"name": "What Year Is It?",
"lines": 2,
"overlays": 0,
"styles": [],
"blank": "https://api.memegen.link/images/whatyear.jpg",
"example": {
"text": [
"",
"what year is it?"
],
"url": "https://api.memegen.link/images/whatyear/_/what_year_is_it~q.jpg"
},
"source": "http://knowyourmeme.com/memes/what-year-is-it",
"keywords": [],
"_self": "https://api.memegen.link/templates/whatyear"
},
{
"id": "winter",
"name": "Winter is coming",
"lines": 2,
"overlays": 0,
"styles": [],
"blank": "https://api.memegen.link/images/winter.jpg",
"example": {
"text": [
"prepare yourself",
"winter is coming"
],
"url": "https://api.memegen.link/images/winter/prepare_yourself/winter_is_coming.jpg"
},
"source": "http://knowyourmeme.com/memes/imminent-ned-brace-yourselves-winter-is-coming",
"keywords": [],
"_self": "https://api.memegen.link/templates/winter"
},
{
"id": "wishes",
"name": "Genie Rules",
"lines": 1,
"overlays": 1,
"styles": [
"blank",
"default"
],
"blank": "https://api.memegen.link/images/wishes.jpg",
"example": {
"text": [
"I want to divide by zero"
],
"url": "https://api.memegen.link/images/wishes/I_want_to_divide_by_zero.jpg"
},
"source": "https://en.meming.world/wiki/Genie_Rules",
"keywords": [
"wish",
"want"
],
"_self": "https://api.memegen.link/templates/wishes"
},
{
"id": "wkh",
"name": "Who Killed Hannibal?",
"lines": 3,
"overlays": 0,
"styles": [],
"blank": "https://api.memegen.link/images/wkh.jpg",
"example": {
"text": [
"Twin Towers",
"George Bush",
"Why would Al-Qaeda do this?"
],
"url": "https://api.memegen.link/images/wkh/Twin_Towers/George_Bush/Why_would_Al--Qaeda_do_this~q.jpg"
},
"source": "https://knowyourmeme.com/memes/who-killed-hannibal",
"keywords": [],
"_self": "https://api.memegen.link/templates/wkh"
},
{
"id": "woman-cat",
"name": "Woman Yelling at a Cat",
"lines": 2,
"overlays": 2,
"styles": [
"default"
],
"blank": "https://api.memegen.link/images/woman-cat.jpg",
"example": {
"text": [
"Mom telling me how useless I am",
"12 year old me playing Minecraft"
],
"url": "https://api.memegen.link/images/woman-cat/Mom_telling_me_how_useless_I_am/12_year_old_me_playing_Minecraft.jpg"
},
"source": "https://knowyourmeme.com/memes/woman-yelling-at-a-cat",
"keywords": [],
"_self": "https://api.memegen.link/templates/woman-cat"
},
{
"id": "wonka",
"name": "Condescending Wonka",
"lines": 2,
"overlays": 0,
"styles": [],
"blank": "https://api.memegen.link/images/wonka.jpg",
"example": {
"text": [
"oh, you just graduated?",
"you must know everything"
],
"url": "https://api.memegen.link/images/wonka/oh,_you_just_graduated~q/you_must_know_everything.jpg"
},
"source": "http://knowyourmeme.com/memes/condescending-wonka-creepy-wonka",
"keywords": [],
"_self": "https://api.memegen.link/templates/wonka"
},
{
"id": "worst",
"name": "The Worst Day Of Your Life So Far",
"lines": 2,
"overlays": 1,
"styles": [
"default"
],
"blank": "https://api.memegen.link/images/worst.jpg",
"example": {
"text": [
"This is the worst day of my life.",
"This is the worst day of your life so far."
],
"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"
},
"source": "https://knowyourmeme.com/memes/the-worst-day-of-your-life-so-far",
"keywords": [],
"_self": "https://api.memegen.link/templates/worst"
},
{
"id": "xy",
"name": "X all the Y",
"lines": 2,
"overlays": 0,
"styles": [],
"blank": "https://api.memegen.link/images/xy.jpg",
"example": {
"text": [
"all the things!!!"
],
"url": "https://api.memegen.link/images/xy/all_the_things!!!.jpg"
},
"source": "http://knowyourmeme.com/memes/x-all-the-y",
"keywords": [],
"_self": "https://api.memegen.link/templates/xy"
},
{
"id": "yallgot",
"name": "Y'all Got Any More of Them",
"lines": 2,
"overlays": 0,
"styles": [],
"blank": "https://api.memegen.link/images/yallgot.jpg",
"example": {
"text": [
"y'all got any more of them",
"memes"
],
"url": "https://api.memegen.link/images/yallgot/y'all_got_any_more_of_them/memes.jpg"
},
"source": "http://knowyourmeme.com/memes/yall-got-anymore-of",
"keywords": [],
"_self": "https://api.memegen.link/templates/yallgot"
},
{
"id": "yodawg",
"name": "Xzibit Yo Dawg",
"lines": 2,
"overlays": 0,
"styles": [],
"blank": "https://api.memegen.link/images/yodawg.jpg",
"example": {
"text": [
"yo dawg",
"i heard you like memes"
],
"url": "https://api.memegen.link/images/yodawg/yo_dawg/i_heard_you_like_memes.jpg"
},
"source": "http://knowyourmeme.com/memes/xzibit-yo-dawg",
"keywords": [],
"_self": "https://api.memegen.link/templates/yodawg"
},
{
"id": "yuno",
"name": "Y U NO Guy",
"lines": 2,
"overlays": 0,
"styles": [],
"blank": "https://api.memegen.link/images/yuno.jpg",
"example": {
"text": [
"y u no",
"use this meme!?"
],
"url": "https://api.memegen.link/images/yuno/y_u_no/use_this_meme!~q.jpg"
},
"source": "http://knowyourmeme.com/memes/y-u-no-guy",
"keywords": [],
"_self": "https://api.memegen.link/templates/yuno"
},
{
"id": "zero-wing",
"name": "All Your Base Are Belong to Us",
"lines": 1,
"overlays": 0,
"styles": [],
"blank": "https://api.memegen.link/images/zero-wing.jpg",
"example": {
"text": [
"all your base are belong to us"
],
"url": "https://api.memegen.link/images/zero-wing/all_your_base_are_belong_to_us.jpg"
},
"source": "https://knowyourmeme.com/memes/all-your-base-are-belong-to-us",
"keywords": [],
"_self": "https://api.memegen.link/templates/zero-wing"
}
]
```