Weld Connection Bridge API

The Connection Bridge API from Weld — 1 operation(s) for connection bridge.

Operations 2

GET /connection_bridges List connection bridges #
POST /connection_bridges Create a connection bridge #

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/weld-connection-bridge-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

weld-connection-bridge-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Weld REST Connection Bridge API
  description: With the Weld REST API you can programmatically control your syncs
  version: '0.1'
  contact: {}
servers:
- url: https://connect.weld.app
security:
- api_key: []
tags:
- name: Connection Bridge
paths:
  /connection_bridges:
    get:
      description: List all active connection bridges for the current account. Connection bridges are short-lived sessions that expire after 86400 seconds.
      operationId: ConnectionBridgeOpenApiController_listConnectionBridges
      parameters: []
      responses:
        '200':
          description: List of Connection Bridges has been successfully retrieved.
      summary: List connection bridges
      tags:
      - Connection Bridge
    post:
      description: Create a short-lived connection bridge session that expires after 86400 seconds.
      operationId: ConnectionBridgeOpenApiController_createConnectionBridge
      parameters: []
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/ConnectionBridgeCreateDto'
      responses:
        '201':
          description: The connection bridge is successfully created.
      summary: Create a connection bridge
      tags:
      - Connection Bridge
components:
  schemas:
    ConnectionBridgeCreateDto:
      type: object
      properties:
        redirect_uri:
          type: string
          description: The redirect URI of the connection authentication flow. Must be a valid URL with https:// protocol, except for localhost. No port is allowed except for localhost. No query parameters are allowed.
          example: https://subdomain.mypage.com/page
        integration_id:
          type: string
          description: The integration id.
          example: google-drive
        connection_id:
          type: string
          description: Id of an existing Connection if the connection is being reauthorized.
          example: q4Rk8vp_fhTjqf
        state:
          type: string
          description: State that will be passed back to the redirect URI after the user has authorized the connection.
          maxLength: 255
          example: giOoRgo5G7L8REPyWZrO
        label:
          type: string
          description: Label for the connection. This is a user-friendly name for the connection.
          example: google-drive-business-folder
          minLength: 1
      required:
      - redirect_uri
      - integration_id
      - label
  securitySchemes:
    api_key:
      type: apiKey
      name: x-api-key
      in: header
      description: The API key from Settings -> API Keys