example-data.com
Menu
Browse docs and collections

Overview

orgs / #9

Component variants

Related

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 9,
  "name": "Predovic, Prosacco and O'Hara",
  "slug": "predovic-prosacco-and-o-hara",
  "description": "Profound full-range access",
  "industryId": 23,
  "size": "1-10",
  "foundedYear": 2000,
  "websiteUrl": "https://example.com/orgs/predovic-prosacco-and-o-hara",
  "logoUrl": "https://picsum.photos/seed/org-9/200/200",
  "createdAt": "2024-03-13T05:05:14.394Z",
  "updatedAt": "2026-04-06T05:09:09.393Z"
}