GET/team

Fetch information about the team associated with this API key. Useful for verifying the key is working and identifying the team's plan. Requires the team:read scope.

Response

Returns data.team with id, name, slug, plan (free | pro), and createdAt.

Example response

{
  "data": {
    "team": {
      "id": "team_VW7udY-vcaZeGacT7IPSS",
      "name": "My Team",
      "slug": "my-team",
      "plan": "free",
      "createdAt": "2026-03-25T15:42:25.455Z"
    }
  }
}

Code examples

cURL
curl "https://www.zyberspace.com/api/v1/{teamSlug}/team" \
  -H "Authorization: Bearer zxk_live_YOUR_API_KEY"
JavaScript
const res = await fetch(`https://www.zyberspace.com/api/v1/{teamSlug}/team`, {
  headers: { Authorization: "Bearer zxk_live_YOUR_API_KEY" },
});
const data = await res.json();
console.log(data);

Base URL: https://www.zyberspace.com

Get your API key →