Discapedia
BrowseBotsTagsSearch
Add server
Discapedia

A beautifully curated directory of Discord communities. Find your people — search, discover, and join the servers worth your time.

Bumps are always manual. Sponsored is always labeled.

Discover

  • Browse all
  • Search
  • Trending
  • New servers

Categories

  • Gaming
  • Anime & Manga
  • Social & Chill
  • Tech & Dev
  • Education
  • Music

Platform

  • Add your server
  • Advertise
  • Blog
  • Docs
  • Guidelines
  • About

© 2026 Discapedia. Not affiliated with Discord Inc.

Community GuidelinesPrivacyTerms
Documentation

Getting started

  • Introduction
  • Add a server

Using Discapedia

  • Bumping
  • Reviews
  • The bot

Trust & Safety

  • How moderation works
  • Reporting

Advertising

  • Advertising

Developers

  • API reference
  • TypeScript SDK
  • MCP server

Legal

  • Terms of Service
  • Privacy Policy

Developers

TypeScript SDK

@discapedia/sdk — a typed, zero-dependency client.

@discapedia/sdk is a typed, zero-dependency fetch client for the API.

Install

pnpm add @discapedia/sdk

Usage

import { DiscapediaClient } from "@discapedia/sdk";

const dp = new DiscapediaClient({ apiKey: process.env.DISCAPEDIA_API_KEY! });

// Listings
const mine = await dp.servers.list();
const { server } = await dp.servers.create({
  guildId: "700000000000000000",
  name: "Aether Lounge",
  tagline: "A 24/7 hangout that feels like home.",
  description: "Active voice channels around the clock.",
  inviteUrl: "https://discord.gg/aether",
  categorySlug: "social",
  tags: ["chill", "voice-chat"],
});
await dp.servers.update(server.id, { tagline: "Now with weekly game nights." });

// Ads
const { campaign } = await dp.campaigns.create({
  name: "Launch push",
  serverSlug: "aether-lounge",
  headline: "Find your people",
  body: "Join the most active social server on Discord.",
  budgetCents: 5000,
  bidCents: 60,
});
await dp.campaigns.update(campaign.id, { status: "paused" });

// Directory
const results = await dp.directory.search({ q: "anime", sort: "trending" });

Errors

Failed calls throw DiscapediaApiError with .code, .message, and .status.

No bump

There is no bump() method — bumping is Discord-only. See Bumping.

PreviousAPI referenceNextMCP server

On this page

  • Install
  • Usage
  • Errors
  • No bump