Neynar · Schema

BuyStorageReqBody

Neynar Farcaster API schema for BuyStorageReqBody

FarcasterSocialDecentralizedWeb3BlockchainSocial GraphCastsChannelsFeedsReactionsNotificationsWebhooksOnchain

Properties

Name Type Description
fid integer The unique identifier of a farcaster user or app (unsigned integer)
idem object
units integer Number of storage units to buy. A storage unit lets you store 5000 casts, 2500 reactions and 2500 links.
View JSON Schema on GitHub

JSON Schema

buystoragereqbody.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://neynar.com/schemas/BuyStorageReqBody",
  "title": "BuyStorageReqBody",
  "description": "Neynar Farcaster API schema for BuyStorageReqBody",
  "properties": {
    "fid": {
      "description": "The unique identifier of a farcaster user or app (unsigned integer)",
      "example": 1,
      "format": "int32",
      "minimum": 1,
      "type": "integer"
    },
    "idem": {
      "$ref": "#/components/schemas/Idem"
    },
    "units": {
      "description": "Number of storage units to buy.\nA storage unit lets you store 5000 casts, 2500 reactions and 2500 links.",
      "example": 1,
      "minimum": 1,
      "type": "integer"
    }
  },
  "required": [
    "fid"
  ],
  "type": "object"
}