Unbounce website screenshot

Unbounce

Unbounce is a landing page, popup, and sticky bar builder with conversion rate optimization features including drag-and-drop design, A/B testing, AI copywriting (Smart Copy), and AI traffic routing (Smart Traffic) for marketers, agencies, SaaS, and ecommerce. The platform integrates with HubSpot, Salesforce, Google Analytics, and other marketing platforms to capture, qualify, and route leads. The Unbounce REST API provides programmatic access to pages, leads, sub-accounts, and domains using OAuth 2.0 Authorization Code flow.

1 APIs 0 Features
Landing PagesConversion Rate OptimizationMarketingA/B TestingLead GenerationMarketing Automation

APIs

Unbounce REST API

REST API for Unbounce providing programmatic access to accounts, sub-accounts, domains, pages, page groups, and leads. Authentication uses OAuth 2.0 Authorization Code flow with...

Collections

Resources

👥
GitHubOrganization
GitHubOrganization
🔗
LinkedIn
LinkedIn
🔗
Website
Website
🌐
DeveloperPortal
DeveloperPortal
🔗
Documentation
Documentation
🔗
API Documentation
API Documentation
💰
Pricing
Pricing
📝
Signup
Signup
🔗
Login
Login
📰
Blog
Blog
💬
Support
Support
🔗
Community
Community

Sources

Raw ↑
opencollection: 1.0.0
info:
  name: Unbounce REST API
  version: 0.4.0
request:
  auth:
    type: basic
    username: '{{username}}'
    password: '{{password}}'
items:
- info:
    name: Meta
    type: folder
  items:
  - info:
      name: Retrieve API meta-information
      type: http
    http:
      method: GET
      url: https://api.unbounce.com/
    docs: Retrieve API meta-information
- info:
    name: Accounts
    type: folder
  items:
  - info:
      name: List accounts
      type: http
    http:
      method: GET
      url: https://api.unbounce.com/accounts
    docs: List accounts
  - info:
      name: Retrieve a single account
      type: http
    http:
      method: GET
      url: https://api.unbounce.com/accounts/:account_id
      params:
      - name: account_id
        value: ''
        type: path
    docs: Retrieve a single account
  - info:
      name: List sub-accounts for an account
      type: http
    http:
      method: GET
      url: https://api.unbounce.com/accounts/:account_id/sub_accounts
      params:
      - name: account_id
        value: ''
        type: path
    docs: List sub-accounts for an account
  - info:
      name: Retrieve a sub-account
      type: http
    http:
      method: GET
      url: https://api.unbounce.com/sub_accounts/:sub_account_id
      params:
      - name: sub_account_id
        value: ''
        type: path
    docs: Retrieve a sub-account
- info:
    name: Pages
    type: folder
  items:
  - info:
      name: List pages for an account
      type: http
    http:
      method: GET
      url: https://api.unbounce.com/accounts/:account_id/pages
      params:
      - name: account_id
        value: ''
        type: path
    docs: List pages for an account
  - info:
      name: List pages for a sub-account
      type: http
    http:
      method: GET
      url: https://api.unbounce.com/sub_accounts/:sub_account_id/pages
      params:
      - name: sub_account_id
        value: ''
        type: path
    docs: List pages for a sub-account
  - info:
      name: List pages on a domain
      type: http
    http:
      method: GET
      url: https://api.unbounce.com/domains/:domain_id/pages
      params:
      - name: domain_id
        value: ''
        type: path
    docs: List pages on a domain
  - info:
      name: List all accessible pages
      type: http
    http:
      method: GET
      url: https://api.unbounce.com/pages
    docs: List all accessible pages
  - info:
      name: Retrieve a page
      type: http
    http:
      method: GET
      url: https://api.unbounce.com/pages/:page_id
      params:
      - name: page_id
        value: ''
        type: path
    docs: Retrieve a page
  - info:
      name: Retrieve form fields for a page
      type: http
    http:
      method: GET
      url: https://api.unbounce.com/pages/:page_id/form_fields
      params:
      - name: page_id
        value: ''
        type: path
    docs: Retrieve form fields for a page
- info:
    name: Domains
    type: folder
  items:
  - info:
      name: List domains for a sub-account
      type: http
    http:
      method: GET
      url: https://api.unbounce.com/sub_accounts/:sub_account_id/domains
      params:
      - name: sub_account_id
        value: ''
        type: path
    docs: List domains for a sub-account
  - info:
      name: Retrieve a domain
      type: http
    http:
      method: GET
      url: https://api.unbounce.com/domains/:domain_id
      params:
      - name: domain_id
        value: ''
        type: path
    docs: Retrieve a domain
- info:
    name: PageGroups
    type: folder
  items:
  - info:
      name: List page groups for a sub-account
      type: http
    http:
      method: GET
      url: https://api.unbounce.com/sub_accounts/:sub_account_id/page_groups
      params:
      - name: sub_account_id
        value: ''
        type: path
    docs: List page groups for a sub-account
  - info:
      name: List pages in a page group
      type: http
    http:
      method: GET
      url: https://api.unbounce.com/page_groups/:page_group_id/pages
      params:
      - name: page_group_id
        value: ''
        type: path
    docs: List pages in a page group
- info:
    name: Leads
    type: folder
  items:
  - info:
      name: List leads for a page
      type: http
    http:
      method: GET
      url: https://api.unbounce.com/pages/:page_id/leads
      params:
      - name: page_id
        value: ''
        type: path
    docs: List leads for a page
  - info:
      name: Retrieve a lead from a page
      type: http
    http:
      method: GET
      url: https://api.unbounce.com/pages/:page_id/leads/:lead_id
      params:
      - name: page_id
        value: ''
        type: path
      - name: lead_id
        value: ''
        type: path
    docs: Retrieve a lead from a page
  - info:
      name: List lead deletion requests for a page
      type: http
    http:
      method: GET
      url: https://api.unbounce.com/pages/:page_id/lead_deletion_request
      params:
      - name: page_id
        value: ''
        type: path
    docs: List lead deletion requests for a page
  - info:
      name: Retrieve a single lead deletion request
      type: http
    http:
      method: GET
      url: https://api.unbounce.com/pages/:page_id/lead_deletion_request/:lead_deletion_request_id
      params:
      - name: page_id
        value: ''
        type: path
      - name: lead_deletion_request_id
        value: ''
        type: path
    docs: Retrieve a single lead deletion request
  - info:
      name: Retrieve a lead
      type: http
    http:
      method: GET
      url: https://api.unbounce.com/leads/:lead_id
      params:
      - name: lead_id
        value: ''
        type: path
    docs: Retrieve a lead
- info:
    name: Users
    type: folder
  items:
  - info:
      name: List users
      type: http
    http:
      method: GET
      url: https://api.unbounce.com/users
    docs: List users
bundled: true