Vai al contenuto
GET /v1/post

One post in full with body text

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

Risposta di esempio

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

{
    "data": {
        "url": "https://steemit.com/@steemit/firstpost",
        "title": "Welcome to Steem!",
        "author": "steemit",
        "source": "Steem",
        "created": "2016-03-30T18:30:18Z",
        "category": "meta",
        "children": 441,
        "permlink": "firstpost",
        "body_text": "Steemit is a social media platform where anyone can earn STEEM points by posting. The more people who like a post, the more STEEM the poster earns. Anyone can sell their STEEM for cash or vest it to boost their voting power.",
        "net_votes": 90,
        "total_payout": 0.942,
        "pending_payout": 0
    },
    "meta": {
        "timestamp": "2026-06-13T13:56:12.197Z",
        "request_id": "a736c308-fba8-451c-8e18-01bca54700c4"
    },
    "status": "ok",
    "message": "Post retrieved successfully",
    "success": true
}