Follower relationship record tracking which user follows another user, with follow timestamp. Used for social media platforms, follower systems, and social networking applications.
https://api.mockly.codes/followers?page=1&limit=10&count=10Configure your request and click Send Request to see the response here.
/followersGet a collection of followers
/social/followers/followers/:idGet a single follower by ID
/social/followers/:id/followers/metaGet resource metadata and schema
/social/followers/metaThe search feature allows you to filter results by searching for text across all or specific fields. Choose between ?q= or ?search= parameter names.
Search across all text fields:
GET https://api.mockly.codes/followers?q=laptopGET https://api.mockly.codes/followers?q=laptop&search_fields=name,descriptionsearch_fields, all text fields are searched// Get 10 followers
fetch('https://api.mockly.codes/followers?count=10')
.then(res => res.json())
.then(data => console.log(data));import requests
response = requests.get(
'https://api.mockly.codes/followers?count=10'
)
data = response.json()curl "https://api.mockly.codes/followers?count=10"fetch('https://api.mockly.codes/followers?nocache=true')idintegerUnique identifier for the follower relationship
random_intuser_idintegerForeign key reference to the user being followed
random_intfollower_idintegerForeign key reference to the user who is following
random_intfollowed_atstringTimestamp when the follow relationship was established
past_datedate-timecountintegerNumber of items to return (default: 10, max: 100)
seedintegerSeed for reproducible data generation
nocachebooleanBypass cache and generate fresh data on every request