example-data.com
Menu
Browse docs and collections

Overview

orgs / #29

Component variants

Related

Request

curl example

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

JavaScript example

const res = await fetch(
  "https://example-data.com/api/v1/orgs/29"
);
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/29"
);
const org = (await res.json()) as Org;

Python example

import requests

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

Response

{
  "id": 29,
  "name": "Corkery - Wunsch",
  "slug": "corkery-wunsch",
  "description": "Robust secondary moratorium",
  "industryId": 33,
  "size": "1-10",
  "foundedYear": 2005,
  "websiteUrl": "https://example.com/orgs/corkery-wunsch",
  "logoUrl": "https://picsum.photos/seed/org-29/200/200",
  "createdAt": "2026-01-31T10:22:07.909Z",
  "updatedAt": "2026-05-04T03:18:28.728Z"
}