Metaplane Connections API

The Connections API from Metaplane — 4 operations for listing warehouse, BI and dbt connections, reading sync status, triggering a re-sync and rotating a connection private key.

Operations 4

GET /v1/connections List all #
GET /v1/connections/{connectionId}/sync/status Sync status #
POST /v1/connections/{connectionId}/sync Sync #
POST /v1/connections/{connectionId}/update-private-key Update private key #

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/metaplane-connections-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

metaplane-connections-api-openapi.yml Raw ↑
openapi: 3.0.1
info:
  title: Metaplane Connections API
  description: 'The Connections API from Metaplane — 4 operation(s) for connections. Data observability: automated anomaly
    detection and data quality monitoring.'
  version: '1.0'
  contact:
    name: Metaplane
    url: https://docs.metaplane.dev/reference/getting-started
servers:
- url: https://dev.api.metaplane.dev
security:
- Authorization: []
tags:
- name: Connections
paths:
  /v1/connections:
    get:
      tags:
      - Connections
      summary: List all
      description: List all connections
      operationId: getAllConnections
      parameters:
      - name: includeDeleted
        in: query
        schema:
          type: boolean
      responses:
        '200':
          description: Success
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/Connection'
  /v1/connections/{connectionId}/sync/status:
    get:
      tags:
      - Connections
      summary: Sync status
      description: Get the current sync status of a connection
      operationId: getConnectionStatus
      parameters:
      - name: connectionId
        in: path
        required: true
        schema:
          type: string
          format: uuid
      responses:
        '200':
          description: Success
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ConnectionSyncStatusResult'
  /v1/connections/{connectionId}/sync:
    post:
      tags:
      - Connections
      summary: Sync
      description: Kicks of a task to re-sync the connection. Please note that this method returning 200 does not means the
        connection has finished syncing. You can poll the connection status api to determine when the sync has finished
      operationId: syncConnection
      parameters:
      - name: connectionId
        in: path
        required: true
        schema:
          type: string
          format: uuid
      responses:
        '200':
          description: Success
  /v1/connections/{connectionId}/update-private-key:
    post:
      tags:
      - Connections
      summary: Update private key
      description: Updates the private key for a connection to the newly passed in value.
      operationId: updatePrivateKey
      parameters:
      - name: connectionId
        in: path
        required: true
        schema:
          type: string
          format: uuid
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/UpdatePrivateKeyRequest'
        required: false
      responses:
        '200':
          description: Success
components:
  schemas:
    Connection:
      type: object
      properties:
        id:
          type: string
          format: uuid
        name:
          type: string
        type:
          type: string
          enum:
          - AIRFLOW
          - BIGQUERY
          - CLICKHOUSE
          - DBT
          - DBT_CORE
          - LOOKER
          - METABASE
          - MODE
          - MYSQL
          - POSTGRES
          - REDSHIFT
          - SIGMA
          - SNOWFLAKE
          - SNOWFLAKE_DATA_APP
          - TABLEAU
          - SQLSERVER
          - POWERBI
          - FIVETRAN
          - DATABRICKS
          - DATABRICKS_HMS
          - CENSUS
          - HIGHTOUCH
          - SEGMENT
          - AIRBYTE
          - HEX
          - USER_DEFINED
        isEnabled:
          type: boolean
        createdAt:
          type: string
          format: date-time
        updatedAt:
          type: string
          format: date-time
        status:
          type: string
          enum:
          - ACTIVE
          - DELETED
    ConnectionSyncStatusResult:
      type: object
      properties:
        status:
          type: string
          enum:
          - STARTED
          - SUCCEEDED
          - ERRORED
        errorMessage:
          type: string
        connectionId:
          type: string
          format: uuid
        timestamp:
          type: string
          format: date-time
    UpdatePrivateKeyRequest:
      type: object
      properties:
        privateKey:
          type: string
        privateKeyPassphrase:
          type: string
          nullable: true
  securitySchemes:
    Authorization:
      type: apiKey
      description: Copy in your API key generated from metaplane
      name: Authorization
      in: header
x-api-evangelist:
  harvested: '2026-08-29'
  method: searched
  source: Split by tag from openapi/_original/metaplane-api-openapi.yml, itself the union of the 23 OpenAPI documents Metaplane
    publishes at https://docs.metaplane.dev/reference/<operation>.md