Community lookup

Overview

This endpoint provides basic information about the specified community. Unlike many other endpoints, this one is accessible for all communities, regardless of whether you hold an admin role in them or not.

API Reference

Get basic info about a community

GEThttps://api-v2.zealy.io/public/communities/{subdomain}
Path parameters
subdomain*string
Header parameters
Response

200

Body
name*string
subdomain*string
id*string
image*nullable string
description*nullable string
Request
const response = await fetch('https://api-v2.zealy.io/public/communities/{subdomain}', {
    method: 'GET',
    headers: {
      "x-api-key": "text"
    },
});
const data = await response.json();
Response
{
  "name": "text",
  "subdomain": "text",
  "id": "text",
  "image": "text",
  "description": "text"
}

Last updated