Generate a believable team presence for early-stage companies with transparent AI disclosure built in.
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.
{
"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
}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`.
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} />;