Skip to main content
GET
/
clusters
/
info
Cluster Info
curl --request GET \
  --url https://api.membit.ai/v1/clusters/info \
  --header 'X-Membit-Api-Key: <api-key>'
import requests

url = "https://api.membit.ai/v1/clusters/info"

headers = {"X-Membit-Api-Key": "<api-key>"}

response = requests.get(url, headers=headers)

print(response.text)
const options = {method: 'GET', headers: {'X-Membit-Api-Key': '<api-key>'}};

fetch('https://api.membit.ai/v1/clusters/info', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));
<?php

$curl = curl_init();

curl_setopt_array($curl, [
CURLOPT_URL => "https://api.membit.ai/v1/clusters/info",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"X-Membit-Api-Key: <api-key>"
],
]);

$response = curl_exec($curl);
$err = curl_error($curl);

curl_close($curl);

if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}
package main

import (
"fmt"
"net/http"
"io"
)

func main() {

url := "https://api.membit.ai/v1/clusters/info"

req, _ := http.NewRequest("GET", url, nil)

req.Header.Add("X-Membit-Api-Key", "<api-key>")

res, _ := http.DefaultClient.Do(req)

defer res.Body.Close()
body, _ := io.ReadAll(res.Body)

fmt.Println(string(body))

}
HttpResponse<String> response = Unirest.get("https://api.membit.ai/v1/clusters/info")
.header("X-Membit-Api-Key", "<api-key>")
.asString();
require 'uri'
require 'net/http'

url = URI("https://api.membit.ai/v1/clusters/info")

http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true

request = Net::HTTP::Get.new(url)
request["X-Membit-Api-Key"] = '<api-key>'

response = http.request(request)
puts response.read_body
{
  "category": "<string>",
  "summary": "<string>",
  "engagement_score": 123,
  "posts": [
    {
      "id": 237064,
      "uuid": "2b13144b-d8d1-76fd-dd9a-a2020c9ad227",
      "author": {
        "handle": "@PhilosophyOfPhy",
        "name": "Philosophy Of Physics",
        "profile_image": "https://img.membit.ai/v2/ae606b4a-cd1f-4ec2-fa1d-b549ce56371e.jpeg"
      },
      "content": "The World as a Mathematical Game;...",
      "url": "https://x.com/PhilosophyOfPhy/status/1955303556321525765",
      "mentioned": {
        "id": 29481,
        "uuid": "a024f4de-498a-8ddb-dbae-c0514428f991",
        "author": {
          "handle": "@PhilosophyOfPhy",
          "name": "Philosophy Of Physics",
          "profile_image": "https://img.membit.ai/v2/ae606b4a-cd1f-4ec2-fa1d-b549ce56371e.jpeg"
        },
        "content": "SO, what happens with Stripe and Circle chains? ...",
        "timestamp": "2025-08-12T15:40:15Z"
      },
      "timestamp": "2025-08-12T16:21:10Z",
      "is_substantive": true,
      "engagement": {
        "likes": 552,
        "replies": 1,
        "retweets": 68
      },
      "engagement_score": 525.4269464440242
    }
  ]
}

Authorizations

X-Membit-Api-Key
string
header
required

API key for authentication.

Query Parameters

label
string
required

Exact cluster label from search results

limit
integer
default:10

Maximum number of posts to return (1-50)

Required range: 1 <= x <= 50
format
enum<string>
default:json

Response format

Available options:
json,
llm

Response

Successful retrieval

category
string
summary
string
engagement_score
number<float>
posts
object[]