Μετάβαση στο περιεχόμενο
GET /v1/meta

Service metadata

Δοκιμάστε το ζωντανά

10 δωρεάν κλήσεις την ημέρα — χωρίς εγγραφή, χωρίς κλειδί API. Μέσω του gateway του oanor.

Προσαρμοσμένες κεφαλίδες (προαιρετικά)
api.oanor.com/deso-api

Δουλεύει. Πάρε ένα κλειδί API και χρησιμοποίησέ το στο έργο σου.

Λάβετε ένα κλειδί API

Αποσπάσματα κώδικα

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

Παράδειγμα απόκρισης

Πραγματική απόκριση αυτού του endpoint, από τον τελευταίο έλεγχο υγείας.

{
    "data": {
        "note": "On-chain amounts are nanos (1 DESO = 1e9 nanos); coin price, locked value and circulating supply are converted to DESO. Diamonds are on-chain tips. Identify a creator by username (nader, mossified).",
        "source": "Public DeSo node (node.deso.org/api/v0, live)",
        "service": "deso-api",
        "endpoints": {
            "GET /v1/feed": "Newest posts across the whole DeSo network (limit=20).",
            "GET /v1/meta": "This document.",
            "GET /v1/posts": "A creator's posts with likes, diamonds, comments, reposts (username=nader, limit=20).",
            "GET /v1/profile": "On-chain profile and creator-coin economy (username=nader).",
            "GET /v1/followers": "Follower and following counts (username=nader)."
        },
        "description": "Live data from DeSo (Decentralized Social), a layer-1 blockchain built for social media where every profile, post and follow is on-chain and each creator has a tradeable creator coin. The profile endpoint returns a username's on-chain profile (description, verification, picture, and the creator-coin economy: coin price in DESO, DeSo locked, coins in circulation, founder reward); the followers endpoint returns follower and following counts; the posts endpoint returns a creator's posts with engagement (likes, diamonds, comments, reposts); the feed endpoint returns the newest posts across the network. Live, no key, nothing stored. A social-blockchain cut with a creator-coin economy — distinct from the other decentralized-social and crypto price/market APIs.",
        "upstream_status": "ok"
    },
    "meta": {
        "timestamp": "2026-06-11T16:46:50.053Z",
        "request_id": "0cb97edc-c2df-4024-91c7-4d892f12fe0b"
    },
    "status": "ok",
    "message": "Meta",
    "success": true
}