OpenapiSocial
Get posts
Returns one of the org's posts by id, with its current status, scheduled time, media and — once it has published — the account and external id it…
GET /v1/social/posts/{id}
| Address | https://api.hanzo.ai/v1/social/posts/{id} |
| Method | GET |
| Operation | get_social_posts_by_id |
| Auth | Authorization: Bearer $HANZO_API_KEY |
Returns one of the org's posts by id, with its current status, scheduled time, media and — once it has published — the account and external id it published under. 404 when there is no such post for this org.
Request
1 field.
| Field | In | Type | Required | Description |
|---|---|---|---|---|
id | path | string | yes | ID is the account or post to act on, taken from the path. |
Response
| Status | Body | Meaning |
|---|---|---|
200 | socialPost | ok |
200 body — 11 fields.
| Field | In | Type | Always | Description |
|---|---|---|---|---|
accountId | body | string | — | AccountID / ExternalID / Error are server-managed publish results, set only by the publish path (never by a client update): the account a post was published… |
channel | body | string | — | Channel is the network this post targets: x, facebook, instagram, linkedin, tiktok, youtube or threads. |
content | body | string | — | Content is the post's text, bounded at 8192 characters. |
createdAt | body | integer | — | CreatedAt is when the post was created, as a unix timestamp in seconds. |
error | body | string | — | Error is why the last publish attempt failed, verbatim and bounded. |
externalId | body | string | — | ExternalID is the id the network returned for the published post, which is what reconciles this row against the post on the network. |
id | body | string | — | ID is the post's identifier, minted on create and the id every later call addresses it by. |
media | body | string[] | — | Media is the post's attached media as a list of URLs (images today; the composer's URL field now, an S3 picker later, populate it). |
scheduleAt | body | integer | — | ScheduleAt is when the post is due, as a unix timestamp in SECONDS. 0 means unscheduled. |
status | body | string | — | Status is the post's lifecycle state: draft, scheduled, published or failed. |
updatedAt | body | integer | — | UpdatedAt is when the post row last changed, as a unix timestamp in seconds. |
Failure carries the platform error shape — see Errors.
Examples
hanzo social posts get <id>import { Configuration, SocialApi } from 'hanzoai';
const api = new SocialApi(new Configuration({ accessToken: process.env.HANZO_API_KEY }));
const { data } = await api.getSocialPostsById({ id: 'id' });from hanzoai.cloud import ApiClient, Configuration
from hanzoai.cloud.api import SocialApi
client = ApiClient(Configuration(access_token=os.environ["HANZO_API_KEY"]))
result = SocialApi(client).get_social_posts_by_id(id='id')cfg := cloud.NewConfiguration()
cfg.AddDefaultHeader("Authorization", "Bearer "+os.Getenv("HANZO_API_KEY"))
client := cloud.NewAPIClient(cfg)
resp, _, err := client.SocialAPI.GetSocialPostsById(context.Background()).Execute()
if err != nil {
return err
}use hanzo_cloud::apis::{configuration::Configuration, social_api};
let mut cfg = Configuration::new();
cfg.bearer_access_token = std::env::var("HANZO_API_KEY").ok();
let result = social_api::get_social_posts_by_id(&cfg, Default::default()).await?;import ai.hanzo.cloud.ApiClient;
import ai.hanzo.cloud.api.SocialApi;
ApiClient client = new ApiClient();
client.setRequestInterceptor(b -> b.header("Authorization", "Bearer " + System.getenv("HANZO_API_KEY")));
var result = new SocialApi(client).getSocialPostsById();curl https://api.hanzo.ai/v1/social/posts/<id> \
-H "Authorization: Bearer $HANZO_API_KEY"MCP reaches social through the social tool, which names its 13 operations with its own verbs — this one among them, under a name only MCP declares. describe explains any of them:
curl -X POST https://api.hanzo.ai/v1/mcp \
-H "Content-Type: application/json" \
-d '{
"jsonrpc": "2.0",
"id": 1,
"method": "tools/call",
"params": {
"name": "describe",
"arguments": {
"op": "list_social_accounts"
}
}
}'How is this guide?