example-data.com
Menu
Browse docs and collections

industries

industries

Browse 40 industries records. Explore sample records and fetch JSON over a free REST API for prototypes, tests, and learning.

Overview

Cards

Compact

Detailed

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.

Request

curl example

curl -sS \
  "https://example-data.com/api/v1/industries?limit=25"

JavaScript example

const res = await fetch(
  "https://example-data.com/api/v1/industries?limit=25"
);
const { data, meta } = await res.json();

TypeScript example

// Download once: mkdir -p types && curl -o types/industries.d.ts https://example-data.com/types/industries.d.ts
import type { Industry, ListEnvelope } from "./types/industries";

const res = await fetch(
  "https://example-data.com/api/v1/industries?limit=25"
);
const { data, meta } = (await res.json()) as ListEnvelope<Industry>;

Python example

import requests

res = requests.get(
    "https://example-data.com/api/v1/industries",
    params={"limit": 25},
)
data = res.json()

Response

{
  "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 →