example-data.com

industries / #13

Biotechnology

Application of biological systems to develop therapeutics and diagnostics.

Component variants

curl -sS \
  "https://example-data.com/api/v1/industries/13" \
  -H "Accept: application/json"
const res = await fetch(
  "https://example-data.com/api/v1/industries/13"
);
const industrie = await res.json();
import type { Industrie } from "https://example-data.com/types/industries.d.ts";

const res = await fetch(
  "https://example-data.com/api/v1/industries/13"
);
const industrie = (await res.json()) as Industrie;
import requests

res = requests.get(
    "https://example-data.com/api/v1/industries/13"
)
industrie = res.json()
{
  "id": 13,
  "name": "Biotechnology",
  "slug": "biotechnology",
  "sector": "Healthcare",
  "description": "Application of biological systems to develop therapeutics and diagnostics."
}
Draftbit