/v1/post
One post in full with body text
Essayez-le en direct
10 appels gratuits par jour — sans inscription, sans clé API. Passe par la passerelle oanor.
Ça marche. Récupérez une clé API et utilisez-la dans votre projet.
Obtenez une clé APIExtraits de code
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_..."}
)
Exemple de réponse
Une réponse réelle de ce endpoint, capturée lors du dernier contrôle de santé.
{
"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
}