Neynar Documentation

Delete verification

cURL

curl --request DELETE \
  --url https://api.neynar.com/v2/farcaster/user/verification/ \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: NEYNAR_API_DOCS' \
  --data '\n{
  "address": "0x5a927ac639636e534b678e81768ca19e2c6280b7",
  "block_hash": "0x191905a9201170abb55f4c90a4cc968b44c1b71cdf3db2764b775c93e7e22b29",
  "eth_signature": "0x2fc09da1f4dcb723fefb91f77932c249c418c0af00c66ed92ee1f35002c80d6a1145280c9f361d207d28447f8f7463366840d3a9309036cf6954afd1fd331beb1b",
  "signer_uuid": "19d0c5fd-9b33-4a48-a0e2-bc7b0555baec"
}
'

Python

import requests

url = "https://api.neynar.com/v2/farcaster/user/verification/"

payload = {
    "address": "0x5a927ac639636e534b678e81768ca19e2c6280b7",
    "block_hash": "0x191905a9201170abb55f4c90a4cc968b44c1b71cdf3db2764b775c93e7e22b29",
    "eth_signature": "0x2fc09da1f4dcb723fefb91f77932c249c418c0af00c66ed92ee1f35002c80d6a1145280c9f361d207d28447f8f7463366840d3a9309036cf6954afd1fd331beb1b",
    "signer_uuid": "19d0c5fd-9b33-4a48-a0e2-bc7b0555baec"
}
headers = {
    "x-api-key": "NEYNAR_API_DOCS",
    "Content-Type": "application/json"
}

response = requests.delete(url, json=payload, headers=headers)

print(response.text)

JavaScript (fetch)

const options = {
  method: 'DELETE',
  headers: {'x-api-key': 'NEYNAR_API_DOCS', 'Content-Type': 'application/json'},
  body: JSON.stringify({
    address: '0x5a927ac639636e534b678e81768ca19e2c6280b7',
    block_hash: '0x191905a9201170abb55f4c90a4cc968b44c1b71cdf3db2764b775c93e7e22b29',
    eth_signature: '0x2fc09da1f4dcb723fefb91f77932c249c418c0af00c66ed92ee1f35002c80d6a1145280c9f361d207d28447f8f7463366840d3a9309036cf6954afd1fd331beb1b',
    signer_uuid: '19d0c5fd-9b33-4a48-a0e2-bc7b0555baec'
  })
};

fetch('https://api.neynar.com/v2/farcaster/user/verification/', options)
  .then(res => res.json())
  .then(res => console.log(res))
  .catch(err => console.error(err));

PHP

<?php

$curl = curl_init();

curl_setopt_array($curl, [\
  CURLOPT_URL => "https://api.neynar.com/v2/farcaster/user/verification/",\
  CURLOPT_RETURNTRANSFER => true,\
  CURLOPT_ENCODING => "",\
  CURLOPT_MAXREDIRS => 10,\
  CURLOPT_TIMEOUT => 30,\
  CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,\
  CURLOPT_CUSTOMREQUEST => "DELETE",\
  CURLOPT_POSTFIELDS => json_encode([\
    'address' => '0x5a927ac639636e534b678e81768ca19e2c6280b7',\
    'block_hash' => '0x191905a9201170abb55f4c90a4cc968b44c1b71cdf3db2764b775c93e7e22b29',\
    'eth_signature' => '0x2fc09da1f4dcb723fefb91f77932c249c418c0af00c66ed92ee1f35002c80d6a1145280c9f361d207d28447f8f7463366840d3a9309036cf6954afd1fd331beb1b',\
    'signer_uuid' => '19d0c5fd-9b33-4a48-a0e2-bc7b0555baec'\
  ]),\
  CURLOPT_HTTPHEADER => [\
    "Content-Type: application/json",\
    "x-api-key: NEYNAR_API_DOCS"\
  ],\
]);

$response = curl_exec($curl);
$err = curl_error($curl);

curl_close($curl);

if ($err) {
  echo "cURL Error #:" . $err;
} else {
  echo $response;
}
?>

Response

{
  "message": "<string>",
  "success": true
}