GrowthSpace Admin API

The Admin API from GrowthSpace — 6 operation(s) for admin.

Operations 7

GET /admin/scopes #
POST /admin/apps #
GET /admin/apps #
POST /admin/apps/{appId}/token #
DELETE /admin/apps/{appId} #
PUT /admin/apps/{appId}/scopes #
POST /admin/apps/{appId}/refresh #

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-admin-api"
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 form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

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

OpenAPI Specification

growthspace-admin-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: '@growthspace-engineering/public-api-management Admin API'
  description: Management of GrowthSpace public API
  version: 0.0.0
  contact:
    name: gr0wth-b0t
    url: github.com/gr0wth-b0t
    email: gsBot@growthspace.com
servers: []
tags:
- name: Admin
paths:
  /admin/scopes:
    get:
      operationId: AppsManagementController_getScopes
      parameters: []
      responses:
        '200':
          description: ''
      tags:
      - Admin
  /admin/apps:
    post:
      operationId: AppsManagementController_createApp
      parameters: []
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/CreateAppDto'
      responses:
        '201':
          description: ''
      tags:
      - Admin
    get:
      operationId: AppsManagementController_listApps
      parameters:
      - name: companyId
        required: true
        in: query
        schema:
          type: string
      responses:
        '200':
          description: ''
      tags:
      - Admin
  /admin/apps/{appId}/token:
    post:
      operationId: AppsManagementController_generateToken
      parameters:
      - name: appId
        required: true
        in: path
        schema:
          type: string
      responses:
        '201':
          description: ''
      tags:
      - Admin
  /admin/apps/{appId}:
    delete:
      operationId: AppsManagementController_revokeApp
      parameters:
      - name: appId
        required: true
        in: path
        schema:
          type: string
      responses:
        '200':
          description: ''
      tags:
      - Admin
  /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: ''
      tags:
      - Admin
  /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: ''
      tags:
      - Admin
components:
  schemas:
    CreateAppDto:
      type: object
      properties: {}
    RefreshTokenDto:
      type: object
      properties: {}
    UpdateScopesDto:
      type: object
      properties: {}