industries
industries
Browse 40 industries records. Free mock data API by Draftbit — fetch over REST or browse paginated HTML.
- Commercial Banking
- Investment Banking
- Insurance
- Asset Management
- Software & SaaS
- Semiconductors
- Telecommunications
- Cybersecurity
- Artificial Intelligence
- E-Commerce
- Pharmaceuticals
- Medical Devices
- Biotechnology
- Health Insurance
- Oil & Gas
- Renewable Energy
- Electric Utilities
- Automotive
- Retail
- Hospitality & Hotels
- Airlines
- Food & Beverage
- Personal Care & Beauty
- Household Products
-
Commercial Banking
Institutions accepting deposits and making loans to businesses and individuals.
-
Investment Banking
Advisory and capital-raising services for corporations and governments.
-
Insurance
Risk management products covering life, health, property, and casualty.
-
Asset Management
Portfolio management and investment products for retail and institutional clients.
-
Software & SaaS
Enterprise and consumer software delivered as cloud-based subscription services.
-
Semiconductors
Design and manufacture of integrated circuits and microprocessors.
-
Telecommunications
Voice, data, and video transmission services over wired and wireless networks.
-
Cybersecurity
Products and services protecting digital assets and networks from threats.
-
Artificial Intelligence
Development of machine learning models and AI-powered applications.
-
E-Commerce
Online retail platforms enabling buying and selling of goods and services.
-
Pharmaceuticals
Research, development, and manufacturing of prescription and OTC drugs.
-
Medical Devices
Equipment and instruments used for diagnosis, treatment, and monitoring.
-
Biotechnology
Application of biological systems to develop therapeutics and diagnostics.
-
Health Insurance
Coverage plans for medical expenses for individuals and employer groups.
-
Oil & Gas
Exploration, production, refining, and distribution of petroleum products.
-
Renewable Energy
Generation of electricity from solar, wind, hydro, and other clean sources.
-
Electric Utilities
Production and distribution of electricity to residential and commercial customers.
-
Automotive
Design, manufacture, and sale of passenger vehicles and light trucks.
-
Retail
Sale of goods directly to consumers through physical and online channels.
-
Hospitality & Hotels
Accommodation services including full-service and budget hotel properties.
-
Airlines
Passenger and cargo air transportation on scheduled and charter routes.
-
Food & Beverage
Manufacturing and distribution of packaged foods, beverages, and ingredients.
-
Personal Care & Beauty
Cosmetics, skincare, haircare, and hygiene product manufacturers.
-
Household Products
Cleaning supplies, appliances, and other everyday household goods.
Commercial Banking
Institutions accepting deposits and making loans to businesses and individuals.
Investment Banking
Advisory and capital-raising services for corporations and governments.
Insurance
Risk management products covering life, health, property, and casualty.
Asset Management
Portfolio management and investment products for retail and institutional clients.
Software & SaaS
Enterprise and consumer software delivered as cloud-based subscription services.
Semiconductors
Design and manufacture of integrated circuits and microprocessors.
Showing first 6 of 24 on this page.
curl -sS \
"https://example-data.com/api/v1/industries?limit=25"const res = await fetch(
"https://example-data.com/api/v1/industries?limit=25"
);
const { data, meta } = await res.json();import type { Industrie, ListEnvelope } from "https://example-data.com/types/industries.d.ts";
const res = await fetch(
"https://example-data.com/api/v1/industries?limit=25"
);
const { data, meta } = (await res.json()) as ListEnvelope<Industrie>;import requests
res = requests.get(
"https://example-data.com/api/v1/industries",
params={"limit": 25},
)
data = res.json() {
"data": [
{
"id": 1,
"name": "Commercial Banking",
"slug": "commercial-banking",
"sector": "Financial Services",
"description": "Institutions accepting deposits and making loans to businesses and individuals."
},
{
"id": 2,
"name": "Investment Banking",
"slug": "investment-banking",
"sector": "Financial Services",
"description": "Advisory and capital-raising services for corporations and governments."
},
{
"id": 3,
"name": "Insurance",
"slug": "insurance",
"sector": "Financial Services",
"description": "Risk management products covering life, health, property, and casualty."
}
],
"meta": {
"page": 1,
"limit": 25,
"total": 40,
"totalPages": 2
},
"links": {
"self": "/api/v1/industries?page=1",
"first": "/api/v1/industries?page=1",
"last": "/api/v1/industries?page=2",
"next": "/api/v1/industries?page=2",
"prev": null
}
}