Neynar · Schema

PostCastReqBody

Neynar Farcaster API schema for PostCastReqBody

FarcasterSocialDecentralizedWeb3BlockchainSocial GraphCastsChannelsFeedsReactionsNotificationsWebhooksOnchain

Properties

Name Type Description
channel_id string Channel ID of the channel where the cast is to be posted. e.g. neynar, farcaster, warpcast
embeds array
idem object
parent object
parent_author_fid object
signer_uuid object
text string
View JSON Schema on GitHub

JSON Schema

postcastreqbody.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://neynar.com/schemas/PostCastReqBody",
  "title": "PostCastReqBody",
  "description": "Neynar Farcaster API schema for PostCastReqBody",
  "properties": {
    "channel_id": {
      "description": "Channel ID of the channel where the cast is to be posted. e.g. neynar, farcaster, warpcast",
      "example": "neynar",
      "type": "string"
    },
    "embeds": {
      "items": {
        "$ref": "#/components/schemas/PostCastReqBodyEmbeds"
      },
      "maxItems": 2,
      "type": "array"
    },
    "idem": {
      "$ref": "#/components/schemas/Idem"
    },
    "parent": {
      "$ref": "#/components/schemas/CastParent"
    },
    "parent_author_fid": {
      "$ref": "#/components/schemas/Fid"
    },
    "signer_uuid": {
      "$ref": "#/components/schemas/SignerUUID"
    },
    "text": {
      "type": "string"
    }
  },
  "required": [
    "signer_uuid"
  ],
  "type": "object"
}