Developers
V1SocialClubs

Submit a text-only club for moderation

Anyone signed in can create a club. It defaults private. No submitted text is published before moderator approval; no image uploads or event creation are accepted.

POST
/v1/social/clubs
AuthorizationBearer <token>

In: header

Request Body

application/json

TypeScript Definitions

Use the request body type in TypeScript.

Response Body

application/json

application/json

curl -X POST "https://example.com/v1/social/clubs" \  -H "Content-Type: application/json" \  -d '{    "title": "string",    "summary": "string",    "termsVersion": "1.0.0"  }'
{  "club": {    "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",    "title": "string",    "summary": "string",    "visibility": "private",    "coverImage": {      "url": "http://example.com",      "alt": "string",      "source": "ai_generated"    },    "memberCount": 0,    "membershipStatus": "none",    "isOwner": true,    "moderationStatus": "pending",    "revision": 1,    "directoryVisible": false  }}