zapi.
APIsPricingDocsMCP
APIsPricingDocsMCPSign in
zapi.
APIsPricingDocsMCP
APIsPricingDocsMCPSign in
On this page
  • Playground
  • Code examples
  • Full reference
  • Related APIs
Social Media/Lahelu
Logo Lahelu

Lahelu

Platform meme & komunitas Indonesia (lahelu.com). Akses detail post, komentar, profil user, postingan user, serta feed & pencarian.

Endpoints
9
Requests
12
Updated
3 months ago
For LLMs
llms.txt
Endpoint health14 hours ago
  • feedpassing, 0.4s
  • profilepassing, 0.1s
  • postpassing, 0.1s
  • postspassing, 0.2s
  • commentspassing, 0.1s
+ 4 more endpointsShow less
  • topicspassing, 0.1s
  • topicpassing, 0.2s
  • userspassing, 0.1s
  • topperspassing, 0.7s
9/9 passingdaily 01:00 WIB

Playground

9 endpoints
GET/v1/social-media:lahelu/feed2m cache4 paramschecking key…
Parameters
querystring

Kata kunci pencarian post. Jika diisi -> mode search.

hashtagstring

Filter post by hashtag (tanpa #). Diabaikan jika query diisi.

sortenum

Urutan feed default (kalau tanpa query/hashtag). Default 'hot'.

pagenumber

Halaman (1,2,3...). Default 1

·
Response
EXAMPLE
{
  "ok": true,
  "mode": "search",
  "page": 1,
  "posts": [
    {
      "url": "https://lahelu.com/post/POTYCNYVo",
      "media": "https://cache.lahelu.com/watermarked/assets/1781318109064-bd40f418-6d97-454c-bfeb-da11ce0147ea.mp4",
      "title": "Meme absurd hari ini",
      "author": {
        "avatar": "https://cache.lahelu.com/106770c4-9509-4ec5-bc34-bdd5065bcd57.webp",
        "userId": "UuiY1EFP3",
        "fullName": "cukuruk",
        "username": "cukuruk"
      },
      "postId": "POTYCNYVo",
      "hashtags": [
        "absurd",
        "meme",
        "non-ori"
      ],
      "mediaType": "video",
      "createTime": 1781318076035,
      "totalCoins": 0,
      "isSensitive": false,
      "totalUpvotes": 1,
      "totalComments": 0,
      "mediaThumbnail": "https://cache.lahelu.com/018a360d-f1de-4770-afdc-dcce02151ee7.webp",
      "totalDownvotes": 0
    },
    {
      "url": "https://lahelu.com/post/PQCOl4BUE",
      "media": "https://cache.lahelu.com/watermarked/assets/1781178989641-11137e2f-422f-4081-9c9f-9ba07882d656.mp4",
      "title": "Basa Jawa Dan Muflis (Orang Yang Bangkrut) #meme #basajawa #halal #halalmeme #muflis",
      "author": {
        "avatar": "https://lh3.googleusercontent.com/a/AGNmyxat7AU801ZhxSqRixjYKlbGAyD9fklR6YXiLgKHTw=s96-c",
        "userId": "U4lt6oHz4",
        "fullName": "bimaaulama7355314",
        "username": "bimaaulama7355314"
      },
      "postId": "PQCOl4BUE",
      "hashtags": [
        "basa-jawa",
        "halal",
        "muflis"
      ],
      "mediaType": "video",
      "createTime": 1781178980391,
      "totalCoins": 0,
      "isSensitive": false,
      "totalUpvotes": 5,
      "totalComments": 1,
      "mediaThumbnail": "https://cache.lahelu.com/d632fc18-632c-467e-801e-e799deb83428.webp",
      "totalDownvotes": 0
    },
    {
      "url": "https://lahelu.com/post/PvVmRYV2n",
      "media": "https://cache.lahelu.com/watermarked/assets/1781172435295-85ab0aed-2722-41fc-a268-9ec0aa529fe3.mp4",
      "title": "Meme lama 🗿",
      "author": {
        "avatar": "https://cache.lahelu.com/5aec8090-8563-49b7-a45a-76c4783a5219.webp",
        "userId": "UoYQQ0rOC",
        "fullName": "dr.greyline",
        "username": "dr.greyline"
      },
      "postId": "PvVmRYV2n",
      "hashtags": [
        "anime"
      ],
      "mediaType": "video",
      "createTime": 1781172430820,
      "totalCoins": 0,
      "isSensitive": false,
      "totalUpvotes": 4,
      "totalComments": 2,
      "mediaThumbnail": "https://cache.lahelu.com/bd930a0a-bb9a-4e09-b2e0-b3607c02c0b9.webp",
      "totalDownvotes": 0
    }
  ],
  "query": "meme",
  "hasMore": true,
  "nextPage": 2
}

Code examples

Feed / Pencarian
zpi-sdkrecommended
// npm i zpi-sdk
import { ZpiClient } from "zpi-sdk";

const client = new ZpiClient({ apiKey: "zpi_xxxxxxxxxxxxxxxxxxxxxxxx" });

const data = await client.run("social-media:lahelu", "feed", {
  "query": "meme absurd",
  "hashtag": "absurd",
  "sort": "hot",
  "page": 1
});
console.log(data);
Full SDK reference →
request.sh
curl -X GET "https://api.zpi.web.id/v1/social-media:lahelu/feed?query=meme+absurd&hashtag=absurd&sort=hot&page=1" \
  -H "x-api-key: zpi_xxxxxxxxxxxxxxxxxxxxxxxx"

Full reference

9 endpoints · plain text
GETFeed / Pencarian/v1/social-media:lahelu/feedFeed Lahelu — pencarian (query), hashtag, atau feed tersortir.

Parameters

querystringoptional
Kata kunci pencarian post. Jika diisi -> mode search.
hashtagstringoptional
Filter post by hashtag (tanpa #). Diabaikan jika query diisi.
sortenumoptional
Urutan feed default (kalau tanpa query/hashtag). Default 'hot'. Values: fresh, hot, top.
pagenumberoptional
Halaman (1,2,3...). Default 1

Request

curl -X GET "https://api.zpi.web.id/v1/social-media:lahelu/feed?query=meme+absurd&hashtag=absurd&sort=hot&page=1" \
  -H "x-api-key: zpi_xxxxxxxxxxxxxxxxxxxxxxxx"

Example response

{
  "ok": true,
  "mode": "search",
  "page": 1,
  "posts": [
    {
      "url": "https://lahelu.com/post/POTYCNYVo",
      "media": "https://cache.lahelu.com/watermarked/assets/1781318109064-bd40f418-6d97-454c-bfeb-da11ce0147ea.mp4",
      "title": "Meme absurd hari ini",
      "author": {
        "avatar": "https://cache.lahelu.com/106770c4-9509-4ec5-bc34-bdd5065bcd57.webp",
        "userId": "UuiY1EFP3",
        "fullName": "cukuruk",
        "username": "cukuruk"
      },
      "postId": "POTYCNYVo",
      "hashtags": [
        "absurd",
        "meme",
        "non-ori"
      ],
      "mediaType": "video",
      "createTime": 1781318076035,
      "totalCoins": 0,
      "isSensitive": false,
      "totalUpvotes": 1,
      "totalComments": 0,
      "mediaThumbnail": "https://cache.lahelu.com/018a360d-f1de-4770-afdc-dcce02151ee7.webp",
      "totalDownvotes": 0
    },
    {
      "url": "https://lahelu.com/post/PQCOl4BUE",
      "media": "https://cache.lahelu.com/watermarked/assets/1781178989641-11137e2f-422f-4081-9c9f-9ba07882d656.mp4",
      "title": "Basa Jawa Dan Muflis (Orang Yang Bangkrut) #meme #basajawa #halal #halalmeme #muflis",
      "author": {
        "avatar": "https://lh3.googleusercontent.com/a/AGNmyxat7AU801ZhxSqRixjYKlbGAyD9fklR6YXiLgKHTw=s96-c",
        "userId": "U4lt6oHz4",
        "fullName": "bimaaulama7355314",
        "username": "bimaaulama7355314"
      },
      "postId": "PQCOl4BUE",
      "hashtags": [
        "basa-jawa",
        "halal",
        "muflis"
      ],
      "mediaType": "video",
      "createTime": 1781178980391,
      "totalCoins": 0,
      "isSensitive": false,
      "totalUpvotes": 5,
      "totalComments": 1,
      "mediaThumbnail": "https://cache.lahelu.com/d632fc18-632c-467e-801e-e799deb83428.webp",
      "totalDownvotes": 0
    },
    {
      "url": "https://lahelu.com/post/PvVmRYV2n",
      "media": "https://cache.lahelu.com/watermarked/assets/1781172435295-85ab0aed-2722-41fc-a268-9ec0aa529fe3.mp4",
      "title": "Meme lama 🗿",
      "author": {
        "avatar": "https://cache.lahelu.com/5aec8090-8563-49b7-a45a-76c4783a5219.webp",
        "userId": "UoYQQ0rOC",
        "fullName": "dr.greyline",
        "username": "dr.greyline"
      },
      "postId": "PvVmRYV2n",
      "hashtags": [
        "anime"
      ],
      "mediaType": "video",
      "createTime": 1781172430820,
      "totalCoins": 0,
      "isSensitive": false,
      "totalUpvotes": 4,
      "totalComments": 2,
      "mediaThumbnail": "https://cache.lahelu.com/bd930a0a-bb9a-4e09-b2e0-b3607c02c0b9.webp",
      "totalDownvotes": 0
    }
  ],
  "query": "meme",
  "hasMore": true,
  "nextPage": 2
}
GETProfil User/v1/social-media:lahelu/profile/:usernameProfil user Lahelu berdasarkan username.

Parameters

usernamestringrequiredin path
Username (dengan/tanpa @) atau full URL profil

Request

curl -X GET "https://api.zpi.web.id/v1/social-media:lahelu/profile/valt_pipas2" \
  -H "x-api-key: zpi_xxxxxxxxxxxxxxxxxxxxxxxx"

Example response

{
  "ok": true,
  "profile": {
    "url": "https://lahelu.com/user/valt_pipas2",
    "avatar": "https://cache.lahelu.com/7c55ad89-eb90-4e9b-b21a-e2d2447593db.webp",
    "isPlus": false,
    "userId": "Uf8UXgiy0",
    "fullName": "valt_pipas2",
    "username": "valt_pipas2",
    "privilege": 0,
    "createTime": 1709299109366,
    "totalCoins": 0,
    "totalPosts": 34,
    "description": "I'm legend of legend☝️🗿\r\nNama: valt\r\nUsia: 11(yang ytta aja😹)\r\nHobi: meme dan Beyblade🪁\r\nAkun baru dari @valt.pipas @valkryie_all  btw :v",
    "totalUpvotes": 2860,
    "upvotesByTag": {
      "sus": 70,
      "dark": 183,
      "anime": 181,
      "absurd": 1263,
      "random": 66,
      "relate": 1019,
      "sarcasm": 59
    },
    "totalDownvotes": 33,
    "totalReferrals": 0
  }
}
GETDetail Post/v1/social-media:lahelu/post/:postIdDetail satu post Lahelu beserta media, author, dan topik.

Parameters

postIdstringrequiredin path
Post ID atau full URL post (mis. https://lahelu.com/post/PVxJKCvPY)

Request

curl -X GET "https://api.zpi.web.id/v1/social-media:lahelu/post/PVxJKCvPY" \
  -H "x-api-key: zpi_xxxxxxxxxxxxxxxxxxxxxxxx"

Example response

{
  "ok": true,
  "post": {
    "url": "https://lahelu.com/post/PVxJKCvPY",
    "media": "https://cache.lahelu.com/watermarked/assets/1781246839672-af3d651f-6877-4dae-8996-e4537217d6d3.mp4",
    "title": "Emperor Angga 🫡",
    "topic": {
      "media": "https://cache.lahelu.com/8827891b-8421-441f-8490-52042f6bd709.webp",
      "title": "meme seadanya",
      "topicId": "TilZhCNnp",
      "description": "bebas kalian mau ngapain aja disini",
      "totalMembers": 116
    },
    "author": {
      "avatar": "https://cache.lahelu.com/7c55ad89-eb90-4e9b-b21a-e2d2447593db.webp",
      "isPlus": false,
      "userId": "Uf8UXgiy0",
      "fullName": "valt_pipas2",
      "username": "valt_pipas2",
      "totalPosts": 34,
      "description": "I'm legend of legend☝️🗿\r\nNama: valt\r\nUsia: 11(yang ytta aja😹)\r\nHobi: meme dan Beyblade🪁\r\nAkun baru dari @valt.pipas @valkryie_all  btw :v",
      "totalUpvotes": 2860,
      "totalDownvotes": 33
    },
    "postId": "PVxJKCvPY",
    "content": [
      {
        "type": "video",
        "value": "https://cache.lahelu.com/watermarked/assets/1781246839672-af3d651f-6877-4dae-8996-e4537217d6d3.mp4",
        "width": 406,
        "height": 720
      },
      {
        "type": "image",
        "value": "https://cache.lahelu.com/55cb5162-76d3-4721-a7c9-c15f006764a4.webp"
      },
      {
        "type": "media",
        "value": "https://cache.lahelu.com/watermarked/assets/1781246839672-af3d651f-6877-4dae-8996-e4537217d6d3.mp4"
      }
    ],
    "country": "ID",
    "hashtags": [
      "menyentuh",
      "kasus",
      "anak-sd",
      "king-angga",
      "bukan-beyblade"
    ],
    "mediaType": "video",
    "createTime": 1781246835508,
    "mediaWidth": 406,
    "totalCoins": 0,
    "isSensitive": false,
    "mediaHeight": 720,
    "totalUpvotes": 21,
    "totalComments": 5,
    "mediaThumbnail": "https://cache.lahelu.com/55cb5162-76d3-4721-a7c9-c15f006764a4.webp",
    "totalDownvotes": 0
  }
}
GETPostingan User/v1/social-media:lahelu/posts/:usernameDaftar postingan milik seorang user (username atau userId).

Parameters

usernamestringrequiredin path
Username (dengan/tanpa @), full URL profil, atau userId mentah (mis. Uf8UXgiy0)
pagenumberoptional
Halaman (1,2,3...). Default 1

Request

curl -X GET "https://api.zpi.web.id/v1/social-media:lahelu/posts/valt_pipas2?page=1" \
  -H "x-api-key: zpi_xxxxxxxxxxxxxxxxxxxxxxxx"

Example response

{
  "ok": true,
  "page": 1,
  "posts": [
    {
      "url": "https://lahelu.com/post/P3QvnsccB",
      "media": "https://cache.lahelu.com/image-P3QvnsccB-61110",
      "title": "Jir, ini buat sunat atau buat motong kayu💀",
      "author": {
        "avatar": "https://cache.lahelu.com/7c55ad89-eb90-4e9b-b21a-e2d2447593db.webp",
        "userId": "Uf8UXgiy0",
        "fullName": "valt_pipas2",
        "username": "valt_pipas2"
      },
      "postId": "P3QvnsccB",
      "hashtags": [
        "dark",
        "sunat",
        "random-post"
      ],
      "mediaType": "image",
      "createTime": 1710227015186,
      "totalCoins": 0,
      "isSensitive": false,
      "totalUpvotes": 183,
      "totalComments": 56,
      "mediaThumbnail": "",
      "totalDownvotes": 2
    },
    {
      "url": "https://lahelu.com/post/PR2vi0JBJ",
      "media": "https://cache.lahelu.com/image-PR2vi0JBJ-57795",
      "title": "Ya begitulah🗿",
      "author": {
        "avatar": "https://cache.lahelu.com/7c55ad89-eb90-4e9b-b21a-e2d2447593db.webp",
        "userId": "Uf8UXgiy0",
        "fullName": "valt_pipas2",
        "username": "valt_pipas2"
      },
      "postId": "PR2vi0JBJ",
      "hashtags": [
        "relate",
        "meme-random",
        "mimpi-random"
      ],
      "mediaType": "image",
      "createTime": 1710396449860,
      "totalCoins": 0,
      "isSensitive": false,
      "totalUpvotes": 16,
      "totalComments": 1,
      "mediaThumbnail": "",
      "totalDownvotes": 0
    },
    {
      "url": "https://lahelu.com/post/P5iUqTRcs",
      "media": "https://cache.lahelu.com/image-P5iUqTRcs-56575",
      "title": "Gak gitu juga konsepnya🗿",
      "author": {
        "avatar": "https://cache.lahelu.com/7c55ad89-eb90-4e9b-b21a-e2d2447593db.webp",
        "userId": "Uf8UXgiy0",
        "fullName": "valt_pipas2",
        "username": "valt_pipas2"
      },
      "postId": "P5iUqTRcs",
      "hashtags": [
        "relate",
        "meme",
        "liat-pake-mata"
      ],
      "mediaType": "image",
      "createTime": 1710483500814,
      "totalCoins": 0,
      "isSensitive": false,
      "totalUpvotes": 18,
      "totalComments": 4,
      "mediaThumbnail": "",
      "totalDownvotes": 0
    }
  ],
  "userId": "Uf8UXgiy0",
  "hasMore": true,
  "nextPage": 2
}
GETKomentar/v1/social-media:lahelu/comments/:postIdKomentar top-level sebuah post (atau balasan bila commentId diisi).

Parameters

postIdstringrequiredin path
Post ID atau full URL post
commentIdstringoptional
Jika diisi, ambil replies dari comment ini (bukan top-level)
pagenumberoptional
Halaman (1,2,3...). Default 1

Request

curl -X GET "https://api.zpi.web.id/v1/social-media:lahelu/comments/PVxJKCvPY?commentId=ConSSyjZK8hX&page=1" \
  -H "x-api-key: zpi_xxxxxxxxxxxxxxxxxxxxxxxx"

Example response

{
  "ok": true,
  "page": 1,
  "hasMore": false,
  "comments": [
    {
      "text": "Emperor Angga 🫡",
      "author": {
        "avatar": "https://cache.lahelu.com/5ab338cb-6f5f-47cb-aa37-530811b4dbed.webp",
        "userId": "U3rk3DlqB",
        "fullName": "mark_grayson",
        "username": "mark_grayson"
      },
      "postId": "PVxJKCvPY",
      "commentId": "ConSSyjZK8hX",
      "createTime": 1781249620190,
      "totalCoins": 0,
      "totalLikes": 1,
      "totalReplies": 0
    },
    {
      "text": "Dia selamat kan ibu nya yang diperkosa tapi dia dibac**",
      "author": {
        "avatar": "",
        "userId": "USPAaIce9",
        "fullName": "riskigame7773459",
        "username": "riskigame7773459"
      },
      "postId": "PVxJKCvPY",
      "commentId": "CyqmQVdgVA5B",
      "createTime": 1781253200365,
      "totalCoins": 0,
      "totalLikes": 0,
      "totalReplies": 0
    },
    {
      "text": "Respect for emperor Angga",
      "media": [
        "https://cache.lahelu.com/permanent/comment-image-bayu-skak.webp"
      ],
      "author": {
        "avatar": "https://cache.lahelu.com/27dc69a1-834a-42f2-b32b-b98f8f7c8451.webp",
        "userId": "UFPdeSkQj",
        "fullName": "genrewtf67",
        "username": "genrewtf67"
      },
      "postId": "PVxJKCvPY",
      "commentId": "CR7Zqi6xybyz",
      "createTime": 1781259362829,
      "totalCoins": 0,
      "totalLikes": 0,
      "totalReplies": 0
    },
    {
      "text": "🕊",
      "author": {
        "avatar": "https://cache.lahelu.com/f2cf8a34-2b6b-4a8f-97d1-1297686e3603.webp",
        "userId": "U68NRCkv6",
        "fullName": "nazx",
        "username": "nazx"
      },
      "postId": "PVxJKCvPY",
      "commentId": "CRiMbpCzi3Hx",
      "createTime": 1781317041906,
      "totalCoins": 0,
      "totalLikes": 0,
      "totalReplies": 0
    },
    {
      "text": "Respect the king lord emperor Rangga",
      "author": {
        "avatar": "https://cache.lahelu.com/712bac99-3979-434e-8241-7804bc0a166b.webp",
        "userId": "Ul68MDqhm",
        "fullName": "king_of_revese",
        "username": "king_of_revese"
      },
      "postId": "PVxJKCvPY",
      "commentId": "CDxk0jqlleGs",
      "createTime": 1781318363774,
      "totalCoins": 0,
      "totalLikes": 0,
      "totalReplies": 0
    }
  ],
  "nextPage": null
}
GETGet Topics/v1/social-media:lahelu/topicsDaftar komunitas Lahelu yang paling baru aktif, atau cari komunitas.

Parameters

querystringoptional
Search term. Omit to browse the most recently active topics
pagenumberoptional
Page number. Default 1, 12 topics per page

Request

curl -X GET "https://api.zpi.web.id/v1/social-media:lahelu/topics?query=anime&page=1" \
  -H "x-api-key: zpi_xxxxxxxxxxxxxxxxxxxxxxxx"

Example response

{
  "ok": true,
  "page": 1,
  "sort": "recentlyActive",
  "count": 12,
  "topics": [
    {
      "url": "https://lahelu.com/topic/Tprk1fH0t",
      "title": "Free coin 2.0💰🪙",
      "topicId": "Tprk1fH0t",
      "activeTime": 1786013809721,
      "createTime": 1721104856406,
      "totalCoins": 11,
      "description": "free coin 2.0 meme lucu original dapet coin😁💰",
      "totalMembers": 1907
    },
    {
      "url": "https://lahelu.com/topic/TzXdOKRco",
      "title": "ElainaOrganization9",
      "topicId": "TzXdOKRco",
      "activeTime": 1786013698416,
      "createTime": 1784921288343,
      "totalCoins": 0,
      "description": "ElainaOrganization group 9",
      "totalMembers": 1
    },
    {
      "url": "https://lahelu.com/topic/TKjiDApxK",
      "title": "Devil may cry",
      "topicId": "TKjiDApxK",
      "activeTime": 1786012186755,
      "createTime": 1784864979812,
      "totalCoins": 0,
      "description": "Hanya boleh postingan yang berkaitan dengan series devil may cry bukan hal lain ya Kontol",
      "totalMembers": 2
    }
  ],
  "hasMore": true,
  "nextPage": 2
}
GETGet Topic Detail/v1/social-media:lahelu/topic/:topicIdDetail satu komunitas Lahelu beserta postingannya.

Parameters

topicIdstringrequiredin path
Topic ID, or a full lahelu.com/topic/… URL
pagenumberoptional
Posts page. Default 1, 12 posts per page

Request

curl -X GET "https://api.zpi.web.id/v1/social-media:lahelu/topic/TPkJerKXg?page=1" \
  -H "x-api-key: zpi_xxxxxxxxxxxxxxxxxxxxxxxx"

Example response

{
  "ok": true,
  "page": 1,
  "count": 12,
  "posts": [
    {
      "url": "https://lahelu.com/post/PDy5fUEpi",
      "media": "https://cache.lahelu.com/watermarked/assets/1781402010234-d00ced1b-24dc-4544-a195-276aac559aa1.mp4",
      "title": "ketika elu belajar bahasa indo",
      "author": {
        "userId": "USRqJ4RCp",
        "username": "pria.solo"
      },
      "postId": "PDy5fUEpi",
      "hashtags": [
        "random"
      ],
      "mediaType": "video",
      "createTime": 1781402004300,
      "totalCoins": 0,
      "isSensitive": false,
      "totalUpvotes": 57,
      "totalComments": 5,
      "mediaThumbnail": "https://cache.lahelu.com/bb5a1914-7aee-427f-8e95-ada59b6628fa.webp",
      "totalDownvotes": 0
    },
    {
      "url": "https://lahelu.com/post/PByhUegoG",
      "media": "https://cache.lahelu.com/watermarked/assets/PByhUegoG-bce4eb96-9da2-4788-be46-e0349e52e90c.mp4",
      "title": "ketika elu makan rendang pake....",
      "author": {
        "userId": "USRqJ4RCp",
        "username": "pria.solo"
      },
      "postId": "PByhUegoG",
      "hashtags": [
        "random"
      ],
      "mediaType": "video",
      "createTime": 1780744924871,
      "totalCoins": 0,
      "isSensitive": false,
      "totalUpvotes": 88,
      "totalComments": 8,
      "mediaThumbnail": "https://cache.lahelu.com/38f55ff5-a811-46fa-91e9-fb8ff991ec18.webp",
      "totalDownvotes": 0
    }
  ],
  "topic": {
    "url": "https://lahelu.com/topic/TPkJerKXg",
    "owner": {
      "userId": "UupJa9Oee",
      "username": "carv_",
      "description": "I'm a eccentric person :3\r\n♀️\r\nI'm a \"LAZY\" artist 👽🙏\r\nfriend irl: @r0tten._.lzet_  @ballerina_coilcina\r\n12 y/o :|\r\nദ്ദി(˵ •̀ ᴗ - ˵ )✧"
    },
    "rules": [
      "jangan rasis",
      "dilarang membuat kegaduhan ''menghina user, menghina topik,mengemis,dll\""
    ],
    "title": "Komunitas user random🗿👍🏿",
    "topicId": "TPkJerKXg",
    "adminIds": [
      "UTzV5fQDm",
      "UXYbuy4BV"
    ],
    "activeTime": 1785985593274,
    "createTime": 1723286864152,
    "totalCoins": 4,
    "description": "k̵̨̪̖͇͙͎̜͊̌͘͜i̵̢̢̡͚̩̞̥͕̜̻̫̩̐̈͘͜️ṉ̵͓̬͈̞̥̭̥̇̓̔͋t̵̏͛̃̍́̈̚͜͝o̶̯͎̱͐̇͋̅̃̈́͋̽̊̀̓͊̃́͋̓  (ノಠ益ಠ)ノ彡┻━┻",
    "totalMembers": 916
  },
  "hasMore": true,
  "nextPage": 2
}
GETSearch Users/v1/social-media:lahelu/usersCari pengguna Lahelu berdasarkan nama.

Parameters

querystringrequired
Username or display name to search for

Request

curl -X GET "https://api.zpi.web.id/v1/social-media:lahelu/users?query=carv" \
  -H "x-api-key: zpi_xxxxxxxxxxxxxxxxxxxxxxxx"

Example response

{
  "ok": true,
  "count": 8,
  "query": "carv",
  "users": [
    {
      "url": "https://lahelu.com/user/carv_",
      "avatar": "https://cache.lahelu.com/28c832fc-0ad1-4955-a6da-ce2a696f72f6.webp",
      "isPlus": false,
      "userId": "UupJa9Oee",
      "username": "carv_",
      "createTime": 1716297854275,
      "totalCoins": 0,
      "totalPosts": 185,
      "description": "I'm a eccentric person :3\r\n♀️\r\nI'm a \"LAZY\" artist 👽🙏\r\nfriend irl: @r0tten._.lzet_  @ballerina_coilcina\r\n12 y/o :|\r\nദ്ദി(˵ •̀ ᴗ - ˵ )✧",
      "totalUpvotes": 1962,
      "totalDownvotes": 39
    },
    {
      "url": "https://lahelu.com/user/carvanakun9135",
      "isPlus": false,
      "userId": "UtwxdoOb5",
      "username": "carvanakun9135",
      "createTime": 1715609623883,
      "totalCoins": 0,
      "totalPosts": 0,
      "totalUpvotes": 0,
      "totalDownvotes": 0
    },
    {
      "url": "https://lahelu.com/user/carvendiff2227440",
      "isPlus": false,
      "userId": "UL3OFfb7R",
      "username": "carvendiff2227440",
      "createTime": 1722413112549,
      "totalCoins": 0,
      "totalPosts": 0,
      "totalUpvotes": 0,
      "totalDownvotes": 0
    }
  ]
}
GETGet Top Posts/v1/social-media:lahelu/toppersPapan postingan berskor tertinggi di Lahelu.

Parameters

limitnumberoptional
Trim the board to N entries. Default all (~99)

Request

curl -X GET "https://api.zpi.web.id/v1/social-media:lahelu/toppers?limit=25" \
  -H "x-api-key: zpi_xxxxxxxxxxxxxxxxxxxxxxxx"

Example response

{
  "ok": true,
  "count": 25,
  "items": [
    {
      "url": "https://lahelu.com/post/PHxCUS7Z6",
      "rank": 1,
      "media": "https://cache.lahelu.com/8b980afa-f0ca-4bff-b9d5-91b3c7906040.webp",
      "score": 29,
      "title": "\"Salah denger lirik 😅\"",
      "postId": "PHxCUS7Z6",
      "userId": "UmP7bZkk3",
      "mediaType": "video",
      "createTime": 1785838275239,
      "totalUpvotes": 29,
      "totalComments": 13
    },
    {
      "url": "https://lahelu.com/post/PbXzWOpuO",
      "rank": 2,
      "media": "https://cache.lahelu.com/watermarked/assets/1785132951651-2f5e2ba1-7cde-4013-b207-39e510b8341f.webp",
      "score": 24,
      "title": "Terciptanya siklus rantai contekan",
      "postId": "PbXzWOpuO",
      "userId": "UgknCNfp0",
      "mediaType": "image",
      "createTime": 1785132950984,
      "totalUpvotes": 48,
      "totalComments": 7
    },
    {
      "url": "https://lahelu.com/post/Pj4CYFdpC",
      "rank": 3,
      "media": "https://cache.lahelu.com/2571b905-e2b1-454b-afc1-a626a7e3c7c1.webp",
      "score": 24,
      "title": "how long we need a person like this in indonesia😭🙏",
      "postId": "Pj4CYFdpC",
      "userId": "UxRhWbuG9",
      "mediaType": "video",
      "createTime": 1783743472689,
      "totalUpvotes": 62,
      "totalComments": 17
    }
  ]
}

Related APIs

More in social-media

TikTok Scraper

social-media/tiktok-scraper

Dapatkan data profile, postingan, comment, dan lainnya dengan lengkap dan konsisten.

42.6K calls·1d cache

Instagram Scraper

social-media/instagram-scraper

Dapatkan data profile, postingan dan lainnya dengan lengkap dan konsisten.

58.1K calls·15m cache

Kaskus

social-media/kaskus

Forum komunitas terbesar Indonesia (kaskus.co.id). Akses detail thread + balasan, daftar thread per sub-forum, pencarian, dan profil user.

115 calls·6h cache

Youtube Scraper

social-media/youtube-scraper

Dapatkan data profile, postingan, comment, dan lainnya dengan lengkap dan konsisten.

99 calls·30m cache

GitHub User

social-media/github-user

Fetch public profile information for a GitHub user.

73 calls·1h cache

Telegram Channel

social-media/telegram-channel

Fetch public Telegram channel preview information.

54 calls·30m cache
Browse APIsPricingDocsMCP serverGet an API key
zapi.One key, one response shape.
TermsPrivacyCookiesAUPRefunds© 2026