Tonic.ai Table Relationships API

The Table Relationships API from Tonic.ai — 1 operation(s) for table relationships.

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-table-relationships-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-table-relationships-api-openapi.yml Raw ↑
openapi: 3.1.0
info:
  title: Tonic Structural REST Generate Data Table Relationships 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: Table Relationships
paths:
  /api/table/relationships:
    get:
      tags:
      - Table Relationships
      summary: Get table relationships for a workspace
      operationId: getTableRelationships
      parameters:
      - $ref: '#/components/parameters/ApiVersion'
      - in: query
        name: workspaceId
        required: true
        schema:
          type: string
      - in: query
        name: useSchemaCache
        schema:
          type: boolean
        description: When true, returns cached schema relationships.
      responses:
        '200':
          description: Table relationship metadata for the workspace.
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>`.

        '