example-data.com
Menu
Browse docs and collections

Overview

teams / #52

Research

orgId
Ratke - Kub
name
Research
slug
ratke-kub-research
description
Libero bibo tergo demum debeo tenetur sono correptius.
memberCount
11
createdAt
updatedAt

Component variants

Related

References

Request

curl example

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

JavaScript example

const res = await fetch(
  "https://example-data.com/api/v1/teams/52"
);
const team = await res.json();

TypeScript example

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

const res = await fetch(
  "https://example-data.com/api/v1/teams/52"
);
const team = (await res.json()) as Team;

Python example

import requests

res = requests.get(
    "https://example-data.com/api/v1/teams/52"
)
team = res.json()

Response

{
  "id": 52,
  "orgId": 18,
  "name": "Research",
  "slug": "ratke-kub-research",
  "description": "Libero bibo tergo demum debeo tenetur sono correptius.",
  "memberCount": 11,
  "createdAt": "2025-05-30T23:46:37.439Z",
  "updatedAt": "2025-10-27T11:22:26.289Z"
}