Weld Integrations API

The Integrations API from Weld — 1 operation(s) for integrations.

Operations 1

GET /integrations List integrations #

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-integrations-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-integrations-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Weld REST Connection Bridge Integrations 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: Integrations
paths:
  /integrations:
    get:
      description: List all integrations that are available in Weld for the current account based on their plan and entitlements.
      operationId: IntegrationsOpenApiController_getIntegrations
      parameters:
      - name: ability
        required: false
        in: query
        description: Filter integrations by a supported ability. Defaults to `EltSource` when omitted.
        schema:
          $ref: '#/components/schemas/OpenApiIntegrationAbility'
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/PagedIntegrationDto'
      summary: List integrations
      tags:
      - Integrations
components:
  schemas:
    IntegrationDto:
      type: object
      properties:
        id:
          type: string
          description: The Id of the integration.
          example: amazon-ads
        name:
          type: string
          description: The integration name.
          example: Amazon Ads
        min_required_plan:
          type: string
          description: The minimum required plan to use this integration.
          example: BUSINESS
        supports_start_date:
          type: boolean
          description: Whether the integration supports setting a start date to limit historical syncs.
        abilities:
          type: array
          items:
            $ref: '#/components/schemas/OpenApiIntegrationAbility'
          description: The abilities that this integration supports.
          example:
          - EltSource
      required:
      - id
      - name
      - supports_start_date
      - abilities
    OpenApiIntegrationAbility:
      type: string
      enum:
      - EltSource
      - ReverseEtlDestination
    PagedIntegrationDto:
      type: object
      properties:
        has_more:
          type: boolean
          description: Indicates whether there are more items to be fetched in the subsequent pages.
          example: true
        next_cursor:
          type: string
          description: The cursor to use in pagination. Use this value as `starting_after` to get the next page.
          example: VeN1GjhVIq1D9h
        data:
          description: List of available integrations
          type: array
          items:
            $ref: '#/components/schemas/IntegrationDto'
      required:
      - has_more
      - data
  securitySchemes:
    api_key:
      type: apiKey
      name: x-api-key
      in: header
      description: The API key from Settings -> API Keys