← Entretenimiento

Búsqueda de memes

GET /memes/search

Search for meme templates por nombre or keyword. Returns matching meme templates with IDs, nombres, and blank imagen URLs. Supports partial matching so you can search for 'drake', 'distracted', 'brain', or 'button' to find the right template. Útil para meme creation tools, chat bots with meme capabilities, and social aplicaciones that let users quickly find and share specific meme formats.

Parametros

q requerido

Search query (meme name or keyword)

Ejemplos de solicitudes

Uso basico
curl "https://nordapi.ee/api/v1/memes/search?q=drake"
Search for Drake meme
curl "https://nordapi.ee/api/v1/memes/search?q=drake"
Search for brain memes
curl "https://nordapi.ee/api/v1/memes/search?q=brain"
Search for button memes
curl "https://nordapi.ee/api/v1/memes/search?q=button"

Respuesta en vivo

{
  "count": 1,
  "data": [
    {
      "box_count": 2,
      "captions": 1527250,
      "height": 1200,
      "id": "181913649",
      "name": "Drake Hotline Bling",
      "url": "https://i.imgflip.com/30b1gx.jpg",
      "width": 1200
    }
  ],
  "success": true
}