example-data.com
Menu
Browse docs and collections

Overview

orgs / #15

Component variants

Related

Request

curl example

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

JavaScript example

const res = await fetch(
  "https://example-data.com/api/v1/orgs/15"
);
const org = await res.json();

TypeScript example

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

const res = await fetch(
  "https://example-data.com/api/v1/orgs/15"
);
const org = (await res.json()) as Org;

Python example

import requests

res = requests.get(
    "https://example-data.com/api/v1/orgs/15"
)
org = res.json()

Response

{
  "id": 15,
  "name": "Lowe and Sons",
  "slug": "lowe-and-sons",
  "description": "Immersive next generation leverage",
  "industryId": 12,
  "size": "201-1000",
  "foundedYear": 2014,
  "websiteUrl": "https://example.com/orgs/lowe-and-sons",
  "logoUrl": "https://picsum.photos/seed/org-15/200/200",
  "createdAt": "2023-06-12T12:48:44.937Z",
  "updatedAt": "2025-04-19T12:01:48.206Z"
}