example-data.com

industries

industries

Page 2 of 2.

Industrial Machinery

Equipment and machinery used in manufacturing and industrial processes.

Aerospace & Defense

Commercial aircraft, military hardware, and space systems.

Construction

Building and infrastructure projects for residential and commercial use.

Logistics & Supply Chain

Freight, warehousing, and distribution services across global supply chains.

Residential Real Estate

Development, leasing, and sale of homes, apartments, and condominiums.

Commercial Real Estate

Office, retail, and mixed-use property development and management.

Showing first 6 of 16 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": 25,
      "name": "Industrial Machinery",
      "slug": "industrial-machinery",
      "sector": "Industrials",
      "description": "Equipment and machinery used in manufacturing and industrial processes."
    },
    {
      "id": 26,
      "name": "Aerospace & Defense",
      "slug": "aerospace-defense",
      "sector": "Industrials",
      "description": "Commercial aircraft, military hardware, and space systems."
    },
    {
      "id": 27,
      "name": "Construction",
      "slug": "construction",
      "sector": "Industrials",
      "description": "Building and infrastructure projects for residential and commercial use."
    }
  ],
  "meta": {
    "page": 2,
    "limit": 24,
    "total": 40,
    "totalPages": 2
  },
  "links": {
    "self": "/api/v1/industries?page=2",
    "next": null,
    "prev": "/api/v1/industries?page=1"
  }
}
Draftbit