example-data.com
Menu
Browse docs and collections

Overview

teams / #14

Security

orgId
Funk, Renner and Grady
name
Security
slug
funk-renner-and-grady-security
description
Ab curriculum velit acceptus spoliatio deleo amicitia harum.
memberCount
14
createdAt
updatedAt

Component variants

Related

Request

curl example

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

JavaScript example

const res = await fetch(
  "https://example-data.com/api/v1/teams/14"
);
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/14"
);
const team = (await res.json()) as Team;

Python example

import requests

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

Response

{
  "id": 14,
  "orgId": 4,
  "name": "Security",
  "slug": "funk-renner-and-grady-security",
  "description": "Ab curriculum velit acceptus spoliatio deleo amicitia harum.",
  "memberCount": 14,
  "createdAt": "2024-10-14T01:16:54.950Z",
  "updatedAt": "2026-03-30T15:48:20.910Z"
}