Spec0docsCLI 0.7.0
API Explorer

List team-scoped private APIs for the calling org

Returns every non-deleted team-scoped API in the calling token's org, regardless of which team owns it. This is what the spec0 api list CLI command targets.

Distinct from GET /api/v1/public/apis, which lists records in the customer-facing public registry — different table, different lifecycle.

GET
/api/v1/public/apis/team

Authorization

BearerAuth
AuthorizationBearer <token>

Bearer token. Either a Personal Access Token (pat_...) or a Service Account Token (sat_...). Issued via the Spec0 dashboard or /me/personal-access-tokens.

In: header

Response Body

application/json

application/json

application/json

curl -X GET "https://app.spec0.io/api/v1/public/apis/team"
[
  {
    "apiId": "2500ac85-f71b-4d01-b32c-62f3af3fe2c5",
    "apiName": "string",
    "version": "string",
    "description": "string",
    "teamId": "a4ede8ba-7c0a-4485-8763-cbd9b282fbec",
    "teamName": "string",
    "updatedAt": "string"
  }
]
{
  "error": "string",
  "message": "string"
}
{
  "status": 0,
  "title": "string",
  "detail": "string",
  "type": "string",
  "instance": "string"
}
Was this helpful?