Neynar · Schema

EmbedUrlMetadata

Neynar Farcaster API schema for EmbedUrlMetadata

FarcasterSocialDecentralizedWeb3BlockchainSocial GraphCastsChannelsFeedsReactionsNotificationsWebhooksOnchain

Properties

Name Type Description
_status string
content_length integer
content_type string
frame object
html object
image object
video object
View JSON Schema on GitHub

JSON Schema

embedurlmetadata.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://neynar.com/schemas/EmbedUrlMetadata",
  "title": "EmbedUrlMetadata",
  "description": "Neynar Farcaster API schema for EmbedUrlMetadata",
  "properties": {
    "_status": {
      "type": "string"
    },
    "content_length": {
      "nullable": true,
      "type": "integer"
    },
    "content_type": {
      "nullable": true,
      "type": "string"
    },
    "frame": {
      "$ref": "#/components/schemas/Frame"
    },
    "html": {
      "$ref": "#/components/schemas/HtmlMetadata"
    },
    "image": {
      "properties": {
        "height_px": {
          "type": "integer"
        },
        "width_px": {
          "type": "integer"
        }
      },
      "type": "object"
    },
    "video": {
      "properties": {
        "duration_s": {
          "type": "number"
        },
        "stream": {
          "items": {
            "properties": {
              "codec_name": {
                "type": "string"
              },
              "height_px": {
                "type": "integer"
              },
              "width_px": {
                "type": "integer"
              }
            },
            "type": "object"
          },
          "type": "array"
        }
      },
      "type": "object"
    }
  },
  "required": [
    "_status"
  ],
  "type": "object"
}