POST
/
farcaster
/
ban
curl --request POST \
  --url https://api.neynar.com/v2/farcaster/ban \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: <api-key>' \
  --data '{
  "fids": [
    3
  ]
}'
{
  "success": true,
  "message": "<string>"
}

Authorizations

x-api-key
string
header
default:NEYNAR_API_DOCS
required

API key to authorize requests

Body

application/json
fids
integer[]
required

The unique identifier of a farcaster user (unsigned integer)

Response

200
application/json
successful operation
success
boolean
required
Example:

true

message
string | null