POST
/
farcaster
/
block
curl --request POST \
  --url https://api.neynar.com/v2/farcaster/block \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: <api-key>' \
  --data '{
  "signer_uuid": "19d0c5fd-9b33-4a48-a0e2-bc7b0555baec",
  "blocked_fid": 3
}'
{
  "success": true,
  "message": "<string>"
}

Authorizations

x-api-key
string
header
default:NEYNAR_API_DOCS
required

API key to authorize requests

Body

application/json
signer_uuid
string
required

UUID of the signer. signer_uuid is paired with API key, can't use a uuid made with a different API key.

Example:

"19d0c5fd-9b33-4a48-a0e2-bc7b0555baec"

blocked_fid
integer
required

The unique identifier of a farcaster user (unsigned integer)

Example:

3

Response

200
application/json
successful operation
success
boolean
message
string