Tonic.ai Workspaces API

The Workspaces API from Tonic.ai — 1 operation(s) for workspaces.

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/tonic-ai-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

tonic-ai-workspaces-api-openapi.yml Raw ↑
openapi: 3.1.0
info:
  title: Tonic Structural REST Generate Data Workspaces API
  version: '1.0'
  description: 'REST API for Tonic Structural, the de-identification, subsetting,

    and synthetic data product from Tonic.ai. The API surface exposes

    workspaces, generation jobs, and table relationship management.


    Authentication uses an API key passed via the `Authorization` header

    in the form `Authorization: Apikey <token>`. API tokens are created

    from User Settings and do not expire.


    Sources:

    - https://docs.tonic.ai/app/api/api-documentation

    - https://docs.tonic.ai/app/api/api-examples

    - Per-instance Swagger at /apidocs/index.html on each Tonic host.

    '
  contact:
    name: Tonic.ai
    url: https://docs.tonic.ai/app/api/api-documentation
servers:
- url: https://{tonicHost}
  description: Your Tonic Structural instance
  variables:
    tonicHost:
      default: app.tonic.ai
      description: Hostname of your Tonic Structural deployment.
security:
- apiKeyAuth: []
tags:
- name: Workspaces
paths:
  /api/workspace:
    get:
      tags:
      - Workspaces
      summary: List workspaces
      operationId: listWorkspaces
      parameters:
      - $ref: '#/components/parameters/ApiVersion'
      responses:
        '200':
          description: Array of workspaces accessible to the caller.
components:
  parameters:
    ApiVersion:
      in: query
      name: api-version
      required: true
      schema:
        type: string
      description: 'Tonic API version (for example `v2023.07.0`). Required on every

        request unless a default version is configured.

        '
  securitySchemes:
    apiKeyAuth:
      type: apiKey
      in: header
      name: Authorization
      description: 'Tonic API key. Send as `Authorization: Apikey <token>`.

        '