User profile with biography, avatar, website, location, occupation, interests, social links, verification status, and follower statistics. Used for social media platforms, professional networks, and user profile systems.
https://api.mockly.codes/profiles?page=1&limit=10&count=10Configure your request and click Send Request to see the response here.
/profilesGet a collection of profiles
/people/profiles/profiles/:idGet a single profile by ID
/people/profiles/:id/profiles/metaGet resource metadata and schema
/people/profiles/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/profiles?q=laptopGET https://api.mockly.codes/profiles?q=laptop&search_fields=name,descriptionsearch_fields, all text fields are searched// Get 10 profiles
fetch('https://api.mockly.codes/profiles?count=10')
.then(res => res.json())
.then(data => console.log(data));import requests
response = requests.get(
'https://api.mockly.codes/profiles?count=10'
)
data = response.json()curl "https://api.mockly.codes/profiles?count=10"fetch('https://api.mockly.codes/profiles?nocache=true')idintegerUnique identifier for the profile
random_intuser_idintegerForeign key reference to the user this profile belongs to
random_intbiostringUser biography or about section
paragraphavatarstringURL to the user's profile picture or avatar
avataruriwebsitestringUser's personal website URL
urlurilocationstringUser's location (city or region)
cityoccupationstringUser's job title or profession
jobinterestsarrayArray of user interests or hobbies
tagssocial_linksobjectObject containing links to social media profiles (e.g., twitter, linkedin, github)
objectis_verifiedbooleanWhether the profile is verified as authentic
booleanfollowers_countintegerTotal number of users following this profile
random_intfollowing_countintegerTotal number of users this profile is following
random_intcountintegerNumber of items to return (default: 10, max: 100)
seedintegerSeed for reproducible data generation
nocachebooleanBypass cache and generate fresh data on every request