forked from D3vd/Meme_Api
-
Notifications
You must be signed in to change notification settings - Fork 0
Specify Subreddit & Count
Marco Ceccon edited this page Feb 19, 2020
·
1 revision
In order to get a custom number of memes from a specific subreddit provide the name of the subreddit and the count in the following endpoint.
Endpoint: /{subreddit}/{count}
Example: https://rndmemes.herokuapp.com/dankmemes/2
Response:
{
"count": 2,
"memes": [
{
"postLink": "https://redd.it/d5e119",
"title": "Mph and km/h so everyone can understand",
"url": "https://i.redd.it/imb4r0se74n31.jpg"
},
{
"postLink": "https://redd.it/d5e5ns",
"title": "Funnier as a team.",
"url": "https://i.redd.it/ixb7absfa4n31.jpg"
}
],
"subreddit": "dankmemes"
}