Funplace Meme API
Funplace is home to endless meme resources uploaded by our users. We offer you the opportunity to receive memes from our database.
Funplace is free and allows 50 requests to Meme API per day. You can pay for access to the EXPERT API in the Developer console for $50/month. ✨
API base url: https://funplace.fun/api/v1/meme/
Meme search
POST search
Get memes based on your search query.
Headers
Content-Type
application/json
Authorization
App-token: <app access token>
Body
query
yes
string
Your search request.
limit
no
int
Number of memes you want in response. ATTENTION: The maximum value is 100. Default value is 5.
page
no
int
The page you want to get in the response, that is, in the response you will get memes from (page - 1) to (page - 2 + limit) when indexed from scratch. ATTENTION: The maximum value is 1. Default value is 1. We do not recommend requesting distant pages, as they may turn out to be empty.
Response
{
"success": "ok",
"data": {
...
},
}{
"error": "bad request",
"error_data": "You have reached your request limit for today"
}{
"error": "unauthorized",
"error_data": {},
}Response body (If successful)
success
yes
string
Always have the value ok.
Get by id
POST getbyid
Get meme by id.
Headers
Content-Type
application/json
Authorization
App-token: <app access token>
Body
id
yes
int
Meme's id.
Response
{
"success": "ok",
"data": {
...
},
}{
"error": "bad request",
"error_data": "You have reached your request limit for today"
}{
"error": "unauthorized",
"error_data": {},
}Response body (If successful)
success
yes
string
Always have the value ok.
Last updated
Was this helpful?