example-data.com

industries

industries

Browse 40 industries records. Free mock data API by Draftbit — fetch over REST or browse paginated HTML.

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
  }
}

View full response →

Draftbit