Growthspace Public API Management

The management surface for the Growthspace Public API. It lists the scope catalogue, creates and revokes Public API applications for a company, issues bearer tokens for an application, updates an application's granted scopes, and exposes a public token-refresh endpoint. The OpenAPI is served live by the service itself at /api/docs-json (Swagger UI at /api/docs); its info.title is "@growthspace-engineering/public-api-management" and its contact address is gsBot@growthspace.com, both of which identify it as Growthspace's own service.

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/growthspace-public-api-management"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no email required.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

growthspace-public-api-management-openapi-original.yml Raw ↑
openapi: 3.0.0
paths:
  /:
    get:
      operationId: AppController_microserviceInfo
      parameters: []
      responses:
        '200':
          description: ''
  /up-time-check:
    get:
      operationId: AppController_upTimeCheck
      parameters: []
      responses:
        '200':
          description: ''
  /_ah/warmup:
    get:
      operationId: AppController_warmupRequest
      parameters: []
      responses:
        '200':
          description: ''
  /healthz:
    get:
      operationId: AppController_healthz
      parameters: []
      responses:
        '200':
          description: ''
  /admin/scopes:
    get:
      operationId: AppsManagementController_getScopes
      parameters: []
      responses:
        '200':
          description: ''
  /admin/apps:
    post:
      operationId: AppsManagementController_createApp
      parameters: []
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/CreateAppDto'
      responses:
        '201':
          description: ''
    get:
      operationId: AppsManagementController_listApps
      parameters:
        - name: companyId
          required: true
          in: query
          schema:
            type: string
      responses:
        '200':
          description: ''
  /admin/apps/{appId}/token:
    post:
      operationId: AppsManagementController_generateToken
      parameters:
        - name: appId
          required: true
          in: path
          schema:
            type: string
      responses:
        '201':
          description: ''
  /admin/apps/{appId}:
    delete:
      operationId: AppsManagementController_revokeApp
      parameters:
        - name: appId
          required: true
          in: path
          schema:
            type: string
      responses:
        '200':
          description: ''
  /admin/apps/{appId}/scopes:
    put:
      operationId: AppsManagementController_updateScopes
      parameters:
        - name: appId
          required: true
          in: path
          schema:
            type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/UpdateScopesDto'
      responses:
        '200':
          description: ''
  /admin/apps/{appId}/refresh:
    post:
      operationId: AppsManagementController_refreshForApp
      parameters:
        - name: appId
          required: true
          in: path
          schema:
            type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/RefreshTokenDto'
      responses:
        '201':
          description: ''
  /public/refresh:
    post:
      operationId: AppsManagementController_publicRefresh
      parameters: []
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/RefreshTokenDto'
      responses:
        '201':
          description: ''
info:
  title: '@growthspace-engineering/public-api-management'
  description: Management of GrowthSpace public API
  version: 0.0.0
  contact:
    name: gr0wth-b0t
    url: github.com/gr0wth-b0t
    email: gsBot@growthspace.com
tags:
  - name: default
    description: utility api endpoints
servers: []
components:
  schemas:
    CreateAppDto:
      type: object
      properties: {}
    UpdateScopesDto:
      type: object
      properties: {}
    RefreshTokenDto:
      type: object
      properties: {}