Sweep Third Party Funnels API

The ThirdPartyFunnels API from Sweep — 2 operation(s) for thirdpartyfunnels.

Operations 4

GET /third-party-funnels #
POST /third-party-funnels #
PUT /third-party-funnels/{thirdPartyFunnelId} #
DELETE /third-party-funnels/{thirdPartyFunnelId} #

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/sweep-thirdpartyfunnels-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

sweep-thirdpartyfunnels-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Sweep Third Party Funnels API
  description: This is a publicly available Sweep API.
  version: '0.1'
  contact: {}
servers:
- url: https://api.sweep.io
  description: Sweep production API — the host this document was harvested from (GET /api-json); /health responds here
tags:
- name: ThirdPartyFunnels
paths:
  /third-party-funnels:
    get:
      operationId: ThirdPartyFunnelsController_getAllFunnels
      parameters: []
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/ThirdPartyFunnelDto'
      security:
      - bearer: []
      tags:
      - ThirdPartyFunnels
    post:
      operationId: ThirdPartyFunnelsController_createFunnel
      parameters: []
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/UpsertThirdPartyFunnelDto'
      responses:
        '201':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ThirdPartyFunnelDto'
      security:
      - bearer: []
      tags:
      - ThirdPartyFunnels
  /third-party-funnels/{thirdPartyFunnelId}:
    put:
      operationId: ThirdPartyFunnelsController_updateThirdPartyFunnel
      parameters:
      - name: thirdPartyFunnelId
        required: true
        in: path
        schema:
          type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/UpsertThirdPartyFunnelDto'
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ThirdPartyFunnelDto'
      security:
      - bearer: []
      tags:
      - ThirdPartyFunnels
    delete:
      operationId: ThirdPartyFunnelsController_deleteThirdPartyFunnel
      parameters:
      - name: thirdPartyFunnelId
        required: true
        in: path
        schema:
          type: string
      responses:
        '200':
          description: ''
      security:
      - bearer: []
      tags:
      - ThirdPartyFunnels
components:
  schemas:
    StepConnectionDto:
      type: object
      properties:
        _id:
          type: string
        targetId:
          type: string
      required:
      - _id
      - targetId
    ThirdPartyFunnelDto:
      type: object
      properties:
        id:
          type: string
        name:
          type: string
        description:
          type: string
        system:
          $ref: '#/components/schemas/ThirdPartySystemDto'
        steps:
          type: array
          items:
            $ref: '#/components/schemas/ThirdPartyStepsDto'
        funnelLinks:
          type: array
          items:
            $ref: '#/components/schemas/FunnelLinkDto'
      required:
      - id
      - name
      - description
      - steps
      - funnelLinks
    StepPositionDto:
      type: object
      properties:
        row:
          type: number
        column:
          type: number
      required:
      - row
      - column
    FunnelLinkDto:
      type: object
      properties:
        _id:
          type: string
        _type:
          type: string
          enum:
          - salesforce
          - thirdParty
          - recordType
          - hubspot
          - metadataElement
        funnelId:
          type: string
        stageId:
          type: string
      required:
      - _id
      - _type
      - funnelId
    ThirdPartySystemDto:
      type: object
      properties:
        name:
          type: string
        domain:
          type: string
      required:
      - name
      - domain
    UpsertThirdPartyFunnelDto:
      type: object
      properties:
        name:
          type: string
        description:
          type: string
        system:
          $ref: '#/components/schemas/ThirdPartySystemDto'
        steps:
          type: array
          items:
            $ref: '#/components/schemas/ThirdPartyStepsDto'
        funnelLinks:
          type: array
          items:
            $ref: '#/components/schemas/FunnelLinkDto'
      required:
      - name
      - description
      - steps
      - funnelLinks
    ThirdPartyStepsDto:
      type: object
      properties:
        id:
          type: string
        name:
          type: string
        stepConnections:
          type: array
          items:
            $ref: '#/components/schemas/StepConnectionDto'
        funnelLinks:
          type: array
          items:
            $ref: '#/components/schemas/FunnelLinkDto'
        position:
          $ref: '#/components/schemas/StepPositionDto'
      required:
      - id
      - name
      - stepConnections
      - funnelLinks
      - position
  securitySchemes:
    bearer:
      scheme: bearer
      bearerFormat: JWT
      type: http