đĢ Social FollowersLearn how fetch the social followers of a solana address on Farcaster.
Table Of Contents
In this guide, you will learn how to use Airstack to:
Pre-requisites
Basic knowledge of GraphQL
Get Started
JavaScript/TypeScript/Python
If you are using JavaScript/TypeScript or Python, Install the Airstack SDK:
npm yarn pnpm pip
React
Copy npm install @airstack/airstack-react
Node
Copy npm install @airstack/node
React
Copy yarn add @airstack/airstack-react
Node
Copy yarn add @airstack/node
React
Copy pnpm install @airstack/airstack-react
Node
Copy pnpm install @airstack/node
Then, add the following snippets to your code:
React Node Python
Copy import { init , useQuery } from "@airstack/airstack-react" ;
init ( "YOUR_AIRSTACK_API_KEY" );
const query = `YOUR_QUERY` ; // Replace with GraphQL Query
const Component = () => {
const { data , loading , error } = useQuery (query);
if (data) {
return < p >Data: { JSON .stringify (data)}</ p >;
}
if (loading) {
return < p >Loading...</ p >;
}
if (error) {
return < p >Error: { error .message}</ p >;
}
};
Copy import { init , fetchQuery } from "@airstack/node" ;
init ( "YOUR_AIRSTACK_API_KEY" );
const query = `YOUR_QUERY` ; // Replace with GraphQL Query
const { data , error } = await fetchQuery (query);
console .log ( "data:" , data);
console .log ( "error:" , error);
Copy import asyncio
from airstack . execute_query import AirstackClient
api_client = AirstackClient (api_key = "YOUR_AIRSTACK_API_KEY" )
query = """YOUR_QUERY""" # Replace with GraphQL Query
async def main ():
execute_query_client = api_client . create_execute_query_object (
query = query)
query_response = await execute_query_client . execute_query ()
print (query_response.data)
asyncio . run ( main ())
Other Programming Languages
To access the Airstack APIs in other languages, you can use https://api.airstack.xyz/gql as your GraphQL endpoint.
Get All Followers of Solana Address
You can get the list of Farcaster followers of a given solana address by using the SocialFollowers
API:
Try Demo
Show me all the social followers of GJQUFnCu7ZJHxtxeaeskjnqyx8QFAN1PsiGuShDMPsqV across Farcaster Code
Query Response
Copy query MyQuery {
SocialFollowers(
input: {
filter : {
identity : { _eq : "GJQUFnCu7ZJHxtxeaeskjnqyx8QFAN1PsiGuShDMPsqV" }
}
blockchain : ALL
limit : 200
}
) {
Follower {
followerAddress {
socials {
dappName
profileName
}
}
}
}
}
Copy {
"data" : {
"SocialFollowers" : {
"Follower" : [
{
"followerAddress" : {
"socials" : [
{
"dappName" : "farcaster" ,
"profileName" : "ghostcode"
}
]
}
} ,
{
"followerAddress" : {
"socials" : [
{
"dappName" : "farcaster" ,
"profileName" : "jackyang36"
}
]
}
} ,
{
"followerAddress" : {
"socials" : [
{
"dappName" : "farcaster" ,
"profileName" : "saxenasaheb.eth"
}
]
}
}
// more followers on Farcaster
]
}
}
}
Check If Solana Address A Is Followed By Solana Address B
You can check if solana address A is followed by solana address B by using the Wallet
API:
Try Demo
Show me if solana address A is followed by solana address B Code
Query Response
Copy query isFollowing {
Wallet(
input: {
# Top-level is Solana address B
identity : "GJQUFnCu7ZJHxtxeaeskjnqyx8QFAN1PsiGuShDMPsqV" ,
blockchain : ethereum
}
) {
socialFollowers(
input: {
filter : {
identity : {
# Here is Solana address A
_eq : "HyrNmmmce9W3rDdTQcZHyYvhuxPN6AaY3mVJcS9f4AZw"
}
}
}
) {
Follower {
dappName
}
}
}
}
Copy {
"data" : {
"Wallet" : {
"socialFollowers" : {
"Follower" : [
{
// Solana address A is followed by Solana address B on Farcaster
"dappName" : "farcaster"
}
]
}
}
}
}
Developer Support
If you have any questions or need help regarding fetching social followers of a solana address, please join our Airstack's Telegram group.
More Resources
Last updated 2 months ago