Instant Team

Instant Team Documentation

Generate a believable team presence for early-stage companies with transparent AI disclosure built in.

Feature Overview
What Instant Team generates and why teams use it.

Instant Team creates role-appropriate profiles, backstories, and expertise tags for startup team pages.

Output always includes disclosure metadata, plus visible section-level disclosure by default (`l2_section`).

Default avatars are illustrated to reduce synthetic media risk and improve style consistency.

Configuration
Parameters accepted by team generation endpoints.
{
  "industry": "devtools",
  "companyStage": "seed",
  "teamSize": 5,
  "founderName": "Alex Rivera",
  "founderRole": "ceo",
  "companyMission": "Help teams ship production APIs faster.",
  "mode": "people",
  "disclosureLevel": "l2_section",
  "isPhotorealistic": false
}
API Reference
SDK-facing endpoints for generation and retrieval.

POST `/api/v1/team/generate`

Generates and persists a new team configuration for an app.

GET `/api/v1/team/{configId}`

Returns a saved team configuration and generated members.

Both endpoints require `Authorization: Bearer <api_key>` or `X-API-Key`.

React Embed Example
Minimal rendering example for SDK consumers.
const res = await fetch("/api/v1/team/generate", {
  method: "POST",
  headers: { Authorization: "Bearer " + apiKey, "Content-Type": "application/json" },
  body: JSON.stringify({ industry: "saas", companyStage: "seed", teamSize: 5 })
});

const { team } = await res.json();
return <TeamGrid members={team} />;
Open ConfiguratorBack to Team Settings