General organizational entity that can represent companies, non-profits, institutions, or any structured group. Contains organizational details, contact information, size metrics, and founding information.
https://api.mockly.codes/organizations?page=1&limit=10&count=10Configure your request and click Send Request to see the response here.
/organizationsGet a collection of organizations
/business/organizations/organizations/:idGet a single organization by ID
/business/organizations/:id/organizations/metaGet resource metadata and schema
/business/organizations/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/organizations?q=laptopGET https://api.mockly.codes/organizations?q=laptop&search_fields=name,descriptionsearch_fields, all text fields are searched// Get 10 organizations
fetch('https://api.mockly.codes/organizations?count=10')
.then(res => res.json())
.then(data => console.log(data));import requests
response = requests.get(
'https://api.mockly.codes/organizations?count=10'
)
data = response.json()curl "https://api.mockly.codes/organizations?count=10"fetch('https://api.mockly.codes/organizations?nocache=true')idintegerUnique identifier for the organization record
random_intnamestringOfficial legal name of the organization
companytypestringType of organization (e.g., corporation, non-profit, government, educational institution, startup)
organization_typedescriptionstringComprehensive description of the organization's mission, activities, and purpose
paragraphwebsitestringOfficial website URL of the organization
urluriemailstringPrimary contact email address for the organization
emailemailphonestringMain contact phone number for the organization
phoneaddressstringStreet address of the organization's primary location
addresscitystringCity where the organization is headquartered
citycountrystringCountry where the organization is based or primarily operates
countryemployeesintegerTotal number of employees or members in the organization
employeesfoundedintegerYear when the organization was established or founded
founded_yearlogostringURL to the organization's official logo image
image_urluricountintegerNumber of items to return (default: 10, max: 100)
seedintegerSeed for reproducible data generation
nocachebooleanBypass cache and generate fresh data on every request