Vai al contenuto
GET /v1/replies

The comment replies on a post

Provalo dal vivo

10 chiamate gratuite al giorno — senza registrazione, senza chiave API. Passa dal gateway oanor.

Intestazioni personalizzate (facoltative)
api.oanor.com/steem-api

Funziona. Prendi una chiave API e usala nel tuo progetto.

Ottieni una chiave API

Frammenti di codice

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

Risposta di esempio

Una risposta reale di questo endpoint, acquisita dall'ultimo health check.

{
    "data": {
        "count": 326,
        "author": "steemit",
        "source": "Steem",
        "replies": [
            {
                "author": "admin",
                "created": "2016-03-30T19:52:30Z",
                "permlink": "firstpost",
                "body_text": "First Reply! Let's get this party started",
                "net_votes": 8
            },
            {
                "author": "proskynneo",
                "created": "2016-03-31T13:54:33Z",
                "permlink": "steemit-firstpost-1",
                "body_text": "Glad to see this live and working! Excited to see where the community goes and excited to be able to use this through a gui instead of the command linne! :D",
                "net_votes": 7
            },
            {
                "author": "red",
                "created": "2016-04-06T19:22:42Z",
                "permlink": "steemit-firstpost-2",
                "body_text": "Did you know you can earn STEEM by commenting on posts?",
                "net_votes": 7
            },
            {
                "author": "business",
                "created": "2016-07-13T08:29:15Z",
                "permlink": "re-steemit-firstpost-20160713t082910980z",
                "body_text": "Welcome to steemit, @steemit.",
                "net_votes": 8
            },
            {
                "author": "gopher",
                "created": "2016-07-18T19:58:09Z",
                "permlink": "re-steemit-firstpost-20160718t195806340z",
                "body_text": "how this user can have these tranfers without any activity?",
                "net_votes": 0
            },
            {
                "author": "jennamarbles",
                "created": "2016-07-19T21:07:48Z",
                "permlink": "re-steemit-firstpost-20160719t210752086z",
                "body_text": "Hello @steemit, I'm asking you to support my idea, in a new development STEEM. It will attract tens of thousands of people:",
                "net_votes": 5
            },
            {
                "author": "kingtylervvs",
                "created": "2016-07-20T12:11:00Z",
                "permlink": "re-steemit-firstpost-20160720t121101482z",
                "body_text": "Thank you for posting. We all LOVE steem! I up-voted you too... BTW, should steemit let us steemers advertise using steem? Be sure to tell everyone you know to come vote here at: This is a democratic community decision.",
                "net_votes": 4
            },
            {
                "author": "kewpiedoll",
                "created": "2016-07-20T21:01:54Z",
                "permlink": "re-steemit-firstpost-20160720t210201326z",
                "body_text": "Why did @ned flag this post?",
                "net_votes": 3
            },
            {
                "author": "gekko",
                "created": "2016-07-21T22:39:39Z",
                "permlink": "re-steemit-firstpost-20160721t223937736z",
                "body_text": "I leave my m
…