← 娱乐

表情包搜索

GET /memes/search

按名称或关键词搜索表情包模板。返回匹配的表情包模板及 ID、名称和空白图片 URL。支持部分匹配,你可以搜索 'drake'、'distracted'、'brain' 或 'button' 来找到合适的模板。适用于表情包创建工具、具有表情包功能的聊天机器人和让用户快速找到和分享特定表情包格式的社交应用。

参数

q 必填

Search query (meme name or keyword)

请求示例

基本用法
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"

实时响应

{
  "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
}