This repo contains a list of verified mappings that link Ethereum addresses with social profiles (Twitter supported currently).
- JSON List: verified.json
- API: https://github.com/cyberconnecthq/social-verifier
- Web: CyberConnect
A twitter entry for an Ethereum address includes 3 fields of data :
handle
: the username found in a users tweettweetID
: the id of the tweet (stored as reference for tweet data)timestamp
: unix timestamp at time of verification
Use our social-verifier API to verify social accounts.
The raw JSON can be found at https://raw.githubusercontent.com/cyberconnecthq/connect-list/main/verified.json.
To use, you can use our CyberConnect API to check an identity twitter account.
or just fetch the data at this endpoint:
fetch(
'https://raw.githubusercontent.com/cyberconnecthq/connect-list/main/verified.json'
).then(async (res) => {
res.json().then((data) => {
console.log(data); // list data
});
});