/v1/meta
Service metadata
Probeer het live
10 gratis calls per dag — geen registratie, geen API-key. Loopt via de oanor-gateway.
Het werkt. Haal een API-key op en gebruik hem in je project.
Verkrijg een API-sleutelCodefragmenten
curl "https://api.oanor.com/minds-api/v1/meta" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/minds-api/v1/meta", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/minds-api/v1/meta");
curl_setopt($ch, CURLOPT_HTTPHEADER, ["x-oanor-key: oanor_test_..."]);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$out = curl_exec($ch);
import requests
requests.get(
"https://api.oanor.com/minds-api/v1/meta",
headers={"x-oanor-key": "oanor_test_..."}
)
Voorbeeldrespons
Een echte respons van dit endpoint, vastgelegd bij de laatste health check.
{
"data": {
"note": "Usernames are Minds channel handles without the @ (e.g. ottman, minds). subscribers/subscriptions are live counts; impressions is the channel's lifetime impression count; joined is the channel creation date.",
"source": "Minds public API (minds.com/api, live)",
"service": "minds-api",
"endpoints": {
"GET /v1/meta": "This document.",
"GET /v1/trends": "Hashtags trending on Minds right now, with volume (limit=10, max 50).",
"GET /v1/channel": "Public channel/profile and engagement stats for a handle (username=ottman)."
},
"description": "Live public data from Minds, an open-source decentralised social network. The channel endpoint returns a public channel/profile and its engagement stats (display name, bio, subscriber and subscription counts, lifetime impressions, plus/pro flags and join date); the trends endpoint returns the hashtags trending on Minds right now with their volume. Live, no key, nothing stored. A genuine decentralised-social feed (channels, stats and hashtag trends), distinct from the Mastodon/fediverse and the other social APIs in the catalogue.",
"trend_sample": 9,
"upstream_status": "ok"
},
"meta": {
"timestamp": "2026-06-11T16:47:32.395Z",
"request_id": "3d88ab68-cbd1-4292-9098-ef05fdbd9e0b"
},
"status": "ok",
"message": "Meta",
"success": true
}