Topograph Workspaces API

The Workspaces API from Topograph — 3 operation(s) for workspaces.

Operations 5

GET /v2/workspaces List all workspaces #
POST /v2/workspaces Create a new workspace #
PATCH /v2/workspaces/{name} Update a workspace #
DELETE /v2/workspaces/{name} Delete a workspace #
GET /v2/workspaces/usage Get usage report per workspace #

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/topograph-workspaces-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 email required.

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

OpenAPI Specification

topograph-workspaces-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Topograph Billing Workspaces API
  description: The Topograph API
  version: '0.1'
  contact: {}
servers:
- url: https://api.topograph.co
security:
- x-api-key: []
tags:
- name: Workspaces
paths:
  /v2/workspaces:
    get:
      operationId: WorkspaceController_listWorkspaces_v2
      parameters: []
      responses:
        '200':
          description: ''
      security:
      - x-api-key: []
      summary: List all workspaces
      tags:
      - Workspaces
    post:
      operationId: WorkspaceController_createWorkspace_v2
      parameters: []
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/CreateWorkspaceDto'
      responses:
        '201':
          description: ''
      security:
      - x-api-key: []
      summary: Create a new workspace
      tags:
      - Workspaces
  /v2/workspaces/{name}:
    patch:
      operationId: WorkspaceController_updateWorkspace_v2
      parameters:
      - name: name
        required: true
        in: path
        schema:
          type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/UpdateWorkspaceDto'
      responses:
        '200':
          description: ''
      security:
      - x-api-key: []
      summary: Update a workspace
      tags:
      - Workspaces
    delete:
      operationId: WorkspaceController_deleteWorkspace_v2
      parameters:
      - name: name
        required: true
        in: path
        schema:
          type: string
      responses:
        '200':
          description: ''
      security:
      - x-api-key: []
      summary: Delete a workspace
      tags:
      - Workspaces
  /v2/workspaces/usage:
    get:
      operationId: WorkspaceController_getUsageReport_v2
      parameters:
      - name: startDate
        required: false
        in: query
        schema:
          type: string
      - name: endDate
        required: false
        in: query
        schema:
          type: string
      - name: workspace
        required: false
        in: query
        schema:
          type: string
      responses:
        '200':
          description: ''
      security:
      - x-api-key: []
      summary: Get usage report per workspace
      tags:
      - Workspaces
components:
  schemas:
    UpdateWorkspaceDto:
      type: object
      properties:
        legalName:
          type: string
          description: New display-friendly legal name.
          example: Acme Paris SAS
          maxLength: 255
    CreateWorkspaceDto:
      type: object
      properties:
        name:
          type: string
          description: Workspace identifier — unique within the account.
          example: branch-paris
          pattern: ^[a-zA-Z0-9_-]+$
          maxLength: 64
        legalName:
          type: string
          description: Display-friendly legal name used in reporting and invoices.
          example: Acme Paris SAS
          maxLength: 255
      required:
      - name
      - legalName
  securitySchemes:
    x-api-key:
      type: apiKey
      in: header
      name: x-api-key