example-data.com
Menu
Browse docs and collections

Overview

orgs / #13

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 13,
  "name": "Kovacek and Sons",
  "slug": "kovacek-and-sons",
  "description": "Ergonomic analyzing benchmark",
  "industryId": 30,
  "size": "1-10",
  "foundedYear": 2010,
  "websiteUrl": "https://example.com/orgs/kovacek-and-sons",
  "logoUrl": "https://picsum.photos/seed/org-13/200/200",
  "createdAt": "2025-06-13T11:48:14.177Z",
  "updatedAt": "2026-03-16T04:38:26.855Z"
}