ClickFunnels website screenshot

ClickFunnels

ClickFunnels is a sales funnel and online business platform that lets entrepreneurs build landing pages, sales funnels, checkout flows, courses, membership sites, and email marketing campaigns without code. The ClickFunnels 2.0 REST API gives developers programmatic access to workspaces, funnels, pages, products, contacts, orders, and subscriptions, authenticated with Bearer tokens or OAuth 2.0.

1 APIs 0 Features
Sales FunnelsLanding PagesE-commerceMarketingCheckoutCRM

APIs

ClickFunnels 2.0 API

REST API for managing workspaces, funnels, pages, products, contacts, orders, subscriptions, and courses in ClickFunnels 2.0. Authentication uses an API access token as a Bearer...

Collections

Resources

👥
GitHubOrganization
GitHubOrganization
🔗
LinkedIn
LinkedIn
🔗
Website
Website
🔗
Documentation
Documentation
🔗
APIReference
APIReference
💰
Pricing
Pricing
📝
Signup
Signup
🔗
Login
Login
🔑
Authentication
Authentication
💬
Support
Support
🔗
Classic API
Classic API
🔗
LlmsText
LlmsText

Sources

Raw ↑
opencollection: 1.0.0
info:
  name: ClickFunnels 2.0 API
  version: 2.0.0
request:
  auth:
    type: bearer
    token: '{{bearerToken}}'
items:
- info:
    name: Teams
    type: folder
  items:
  - info:
      name: List teams
      type: http
    http:
      method: GET
      url: https://accounts.myclickfunnels.com/api/v2/teams
    docs: List teams accessible to the authenticated API token.
- info:
    name: Workspaces
    type: folder
  items:
  - info:
      name: List workspaces for a team
      type: http
    http:
      method: GET
      url: https://accounts.myclickfunnels.com/api/v2/teams/:team_id/workspaces
      params:
      - name: team_id
        value: ''
        type: path
    docs: List workspaces for a team
- info:
    name: Contacts
    type: folder
  items:
  - info:
      name: List contacts for a workspace
      type: http
    http:
      method: GET
      url: https://accounts.myclickfunnels.com/api/v2/workspaces/:workspace_id/contacts
      params:
      - name: workspace_id
        value: ''
        type: path
    docs: List contacts for a workspace
- info:
    name: Products
    type: folder
  items:
  - info:
      name: Create a product
      type: http
    http:
      method: POST
      url: https://accounts.myclickfunnels.com/api/v2/workspaces/:workspace_id/products
      params:
      - name: workspace_id
        value: ''
        type: path
      body:
        type: json
        data: '{}'
    docs: Create a new product, including variant_properties (e.g., size/color).
  - info:
      name: Update a product
      type: http
    http:
      method: PATCH
      url: https://accounts.myclickfunnels.com/api/v2/products/:product_id
      params:
      - name: product_id
        value: ''
        type: path
      body:
        type: json
        data: '{}'
    docs: Update a product
  - info:
      name: Create a product variant
      type: http
    http:
      method: POST
      url: https://accounts.myclickfunnels.com/api/v2/products/:product_id/variants
      params:
      - name: product_id
        value: ''
        type: path
      body:
        type: json
        data: '{}'
    docs: Create a product variant
  - info:
      name: Create a price for a variant
      type: http
    http:
      method: POST
      url: https://accounts.myclickfunnels.com/api/v2/products/:product_id/prices
      params:
      - name: product_id
        value: ''
        type: path
      body:
        type: json
        data: '{}'
    docs: Create a price for a variant
- info:
    name: Fulfillments
    type: folder
  items:
  - info:
      name: Create a fulfillment location
      type: http
    http:
      method: POST
      url: https://accounts.myclickfunnels.com/api/v2/fulfillments/locations
      body:
        type: json
        data: '{}'
    docs: Create a fulfillment location
  - info:
      name: Create a fulfillment
      type: http
    http:
      method: POST
      url: https://accounts.myclickfunnels.com/api/v2/fulfillments
      body:
        type: json
        data: '{}'
    docs: Create a fulfillment
bundled: true