Skip to content
GET /v1/meta

Service metadata

Try it live

10 free calls per day — no sign-up, no API key. Goes through the oanor gateway.

Custom headers (optional)
api.oanor.com/hive-api

It works. Grab an API key and use it in your project.

Get an API key

Code snippets

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

Example response

A real response from this endpoint, captured by the latest health check.

{
    "data": {
        "source": "Hive public JSON-RPC API (bridge.*, live)",
        "service": "hive-api",
        "endpoints": {
            "GET /v1/meta": "This document.",
            "GET /v1/posts": "A user's blog posts (user=gtg, limit up to 50): votes, payout, comments.",
            "GET /v1/account": "A user's Hive profile (user=gtg): reputation, followers, posts, bio.",
            "GET /v1/trending": "Platform posts (sort=trending|hot|created|payout, optional tag=, limit up to 50)."
        },
        "description": "Live data for the Hive blockchain social network from its public JSON-RPC nodes: a username's profile (display name, reputation, followers, following, post count, bio, location, website, join date); a user's blog posts with up-votes, HBD payout, comment count and tags; and the platform's trending, hot, new or top-paid posts, optionally by tag. Live, no key, nothing stored. Distinct from other social and centralised-blog APIs — this is the on-chain Hive network.",
        "upstream_status": "ok"
    },
    "meta": {
        "timestamp": "2026-06-09T11:38:55.802Z",
        "request_id": "3c5b7317-0c24-461c-b02e-7b9142b0f802"
    },
    "status": "ok",
    "message": "Meta",
    "success": true
}