example-data.com
Menu
Browse docs and collections

Overview

orgs / #30

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 30,
  "name": "Gleason - Kertzmann",
  "slug": "gleason-kertzmann",
  "description": "Future-proofed motivating toolset",
  "industryId": 29,
  "size": "1000+",
  "foundedYear": 2023,
  "websiteUrl": "https://example.com/orgs/gleason-kertzmann",
  "logoUrl": "https://picsum.photos/seed/org-30/200/200",
  "createdAt": "2026-05-03T07:13:45.431Z",
  "updatedAt": "2026-05-19T17:34:15.514Z"
}