Skip to Content

Dcard

Taiwan’s largest anonymous community platform — forums, posts, and personas.

  • Forums: Browse by alias (e.g. trending, talk, relationship)
  • Search: Full-text search across all forums
  • Personas: User profiles by username

Slow response expected: Dcard endpoints may take 10–90 seconds to respond, especially on first request. Please set your HTTP client timeout to at least 120 seconds. Subsequent requests are typically much faster (1–2s).


Forums

GET /dcard/forums/:alias — 2 credits

Get forum info by alias.

ParamTypeRequiredDefaultDescription
aliasstringYesForum alias (e.g. trending, talk, relationship)
curl -H "x-api-key: sk_byc_xxx" \ https://api.bycrawl.com/dcard/forums/trending

Response

{ "alias": "trending", "name": "時事", "description": "時事板歡迎針對國內外議題、國家政策、即時新聞等討論...", "isSchool": false, "postCount": { "last30Days": 814 }, "subscriptionCount": 713805 }

GET /dcard/forums/:alias/posts — 2 credits

Get posts from a forum.

ParamTypeRequiredDefaultDescription
aliasstringYesForum alias
countintegerNo30Number of posts (1-30)
popularbooleanNofalseShow popular posts only
curl -H "x-api-key: sk_byc_xxx" \ "https://api.bycrawl.com/dcard/forums/trending/posts?count=10"

Response

{ "posts": [ { "id": 261032589, "title": "Taq之母錢嘉韻教授逝世", "excerpt": "也是剛剛看FB才知道錢老師於前幾日逝世了...", "content": "", "createdAt": "2026-03-07T16:50:31.137Z", "updatedAt": "2026-03-07T16:50:31.137Z", "forumAlias": "trending", "forumName": "時事", "commentCount": 0, "likeCount": 0, "topics": [], "media": [], "anonymousSchool": false, "anonymousDepartment": true, "withImages": false, "withVideos": false, "pinned": false } // ... more posts ] }

GET /dcard/posts/search?q=xxx — 3 credits

Search Dcard posts by keyword.

ParamTypeRequiredDefaultDescription
qstringYesSearch query
limitintegerNo30Number of results (1-100)
offsetintegerNo0Offset for pagination
curl -H "x-api-key: sk_byc_xxx" \ "https://api.bycrawl.com/dcard/posts/search?q=台大"

Response

{ "posts": [ { "id": 260959876, "title": "台大放榜會偷跑嗎", "excerpt": "更 看起來沒料 頂多當天早上9點,會嗎...", "content": "", "createdAt": "2026-02-26T13:09:14.537Z", "updatedAt": "2026-03-06T01:22:04.650Z", "forumAlias": "graduate_school", "forumName": "研究所", "commentCount": 12, "likeCount": 23, "topics": [], "media": [ { "url": "https://...", "width": 512, "height": 512, "type": "image/sticker" } ], "anonymousSchool": false, "anonymousDepartment": true, "withImages": false, "withVideos": false, "pinned": false } // ... more posts ] }

Personas

GET /dcard/personas/:username — 2 credits

Get user persona by username.

ParamTypeRequiredDefaultDescription
uidstringYesUser persona UID
ParamTypeRequiredDefaultDescription
uidstringYesUser persona UID
curl -H "x-api-key: sk_byc_xxx" \ https://api.bycrawl.com/dcard/personas/a68231044

Response

{ "username": "a68231044", "nickname": "N腎", "postCount": 4824 }
Last updated on