Zum Inhalt springen
GET /v1/meta

Service metadata

Live testen

10 freie Calls pro Tag — keine Anmeldung, kein API-Key. Geht durchs oanor-Gateway.

Eigene Header (optional)
api.oanor.com/steem-api

Funktioniert. Hol dir einen API-Key und nutze sie in deinem Projekt.

API-Key holen

Code-Snippets

curl "https://api.oanor.com/steem-api/v1/meta" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/steem-api/v1/meta", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/steem-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/steem-api/v1/meta",
    headers={"x-oanor-key": "oanor_test_..."}
)

Beispiel-Response

Echte Antwort dieses Endpoints, erfasst beim letzten Health-Check.

{
    "data": {
        "note": "Usernames are Steem account names (e.g. blocktrades, steemit). Reputation is the familiar display score; balances are in STEEM/SBD; trending accepts an optional tag.",
        "source": "Steem public RPC (api.steemit.com, live)",
        "service": "steem-api",
        "endpoints": {
            "GET /v1/meta": "This document.",
            "GET /v1/account": "Social profile and on-chain stats for an account (username=blocktrades).",
            "GET /v1/network": "Steem chain-wide stats — head block and STEEM supply.",
            "GET /v1/trending": "Posts trending on Steemit now, optional tag (tag=&limit=10, max 50)."
        },
        "head_block": 106851815,
        "description": "Live data from the Steem blockchain and its social layer (Steemit). The account endpoint returns a Steemit account's social profile and on-chain stats (display name, about, location, website, reputation score, post count, STEEM and SBD balances, creation date); the trending endpoint returns the posts trending on Steemit right now; the network endpoint returns chain-wide stats (head block, current and virtual STEEM supply). Live, no key, nothing stored. A genuine blockchain-social feed, distinct from Hive — Steem is a separate chain since the 2020 fork.",
        "upstream_status": "ok"
    },
    "meta": {
        "timestamp": "2026-06-11T16:47:24.850Z",
        "request_id": "977d5a9e-312c-491a-87ef-4fc1b51ea25d"
    },
    "status": "ok",
    "message": "Meta",
    "success": true
}