example-data.com
Menu
Browse docs and collections

Overview

industries / #4

Asset Management

Portfolio management and investment products for retail and institutional clients.

Component variants

Related

Request

curl example

curl -sS \
  "https://example-data.com/api/v1/industries/4" \
  -H "Accept: application/json"

JavaScript example

const res = await fetch(
  "https://example-data.com/api/v1/industries/4"
);
const industry = 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 } from "./types/industries";

const res = await fetch(
  "https://example-data.com/api/v1/industries/4"
);
const industry = (await res.json()) as Industry;

Python example

import requests

res = requests.get(
    "https://example-data.com/api/v1/industries/4"
)
industrie = res.json()

Response

{
  "id": 4,
  "name": "Asset Management",
  "slug": "asset-management",
  "sector": "Financial Services",
  "description": "Portfolio management and investment products for retail and institutional clients."
}