Neynar · Schema

SignedKeyRequestSponsor

Neynar Farcaster API schema for SignedKeyRequestSponsor

FarcasterSocialDecentralizedWeb3BlockchainSocial GraphCastsChannelsFeedsReactionsNotificationsWebhooksOnchain

Properties

Name Type Description
fid object
signature string Signature generated by the fid of the sponsor and the signature generated from signKeyRequest for the app.
sponsored_by_neynar boolean Neynar will sponsor the signer if set to true. **Note: ** If sponsor.fid and sponsor.signature are provided along with sponsored_by_neynar set to true, the sponsor.fid and sponsor.signature will be ig
View JSON Schema on GitHub

JSON Schema

signedkeyrequestsponsor.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://neynar.com/schemas/SignedKeyRequestSponsor",
  "title": "SignedKeyRequestSponsor",
  "description": "Neynar Farcaster API schema for SignedKeyRequestSponsor",
  "properties": {
    "fid": {
      "$ref": "#/components/schemas/Fid"
    },
    "signature": {
      "description": "Signature generated by the fid of the sponsor and the signature generated from signKeyRequest for the app.",
      "type": "string"
    },
    "sponsored_by_neynar": {
      "description": "Neynar will sponsor the signer if set to true.\n**Note: ** If sponsor.fid and sponsor.signature are provided along with sponsored_by_neynar set to true,\nthe sponsor.fid and sponsor.signature will be ignored.\nNeynar will sponsor the signer on behalf of the user. The developer will get charged in credits.",
      "type": "boolean"
    }
  },
  "type": "object"
}