Comprehensive business entity information including corporate details, financial metrics, organizational structure, and contact information. Used for company profiles, directories, and business intelligence.
https://api.mockly.codes/companies?page=1&limit=10&count=10Configure your request and click Send Request to see the response here.
/companiesGet a collection of companies
/business/companies/companies/:idGet a single company by ID
/business/companies/:id/companies/metaGet resource metadata and schema
/business/companies/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/companies?q=laptopGET https://api.mockly.codes/companies?q=laptop&search_fields=name,descriptionsearch_fields, all text fields are searched// Get 10 companies
fetch('https://api.mockly.codes/companies?count=10')
.then(res => res.json())
.then(data => console.log(data));import requests
response = requests.get(
'https://api.mockly.codes/companies?count=10'
)
data = response.json()curl "https://api.mockly.codes/companies?count=10"fetch('https://api.mockly.codes/companies?nocache=true')idintegerUnique identifier for the company record
random_intnamestringOfficial legal name of the company
companysloganstringCompany tagline or marketing slogan that represents the brand
catch_phrasedescriptionstringDetailed description of the company's business, mission, products, and services
paragraphindustrystringPrimary industry sector the company operates in (e.g., Software, Manufacturing, Retail)
industrysizestringCompany size classification based on employee count (e.g., startup, small, medium, large, enterprise)
company_sizefounded_yearintegerYear the company was established or incorporated
founded_yearheadquartersstringCity where the company's main headquarters or corporate office is located
citycountrystringCountry where the company is headquartered or primarily operates
countrywebsitestringOfficial company website URL
urluriemailstringPrimary corporate email address for general inquiries
emailemailphonestringMain corporate phone number for business inquiries
phonerevenuenumberAnnual revenue or total sales figure, typically in the company's primary currency
revenueemployeesintegerTotal number of employees working for the company worldwide
employeeslogostringURL to the company'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