Integrations Directory

Every service OppScope talks to, what it is used for, and how to connect it. Built and maintained in-house, so there is no middleware between you and your data.

Connectors, creator data, and a REST API

1. Overview

OppScope connects to the places your product data already lives. Marketplace research runs through the browser extension, creator data comes from InsightIQ, and billing is handled by Stripe, with HubSpot and Rewardful behind it.

Every connector here is built and maintained in-house. If you need something we do not cover, the REST API in section 5 is open to you, and section 6 is how you ask us to build it.

2. Marketplaces

Marketplace research runs through the OppScope browser extension, which reads the page you are already looking at and sends it back for scoring and comparison.

  • Alibaba - supplier listings, pricing, and minimum order quantities
  • Amazon - resale demand, competition, and paid search data

The extension is a free install and works on any plan. Because it reads pages in your own browser session, there is nothing to authorise on the marketplace side and no account credentials to hand over.

3. Creators & Influencers

Influencer discovery and campaign analytics are powered by InsightIQ, which covers the major social platforms.

  • Creator profiles, audience demographics, and engagement history
  • Campaign tracking against the products you are promoting

This runs server side against our own InsightIQ account, so there is nothing for you to connect - it is available wherever the influencer tools appear in the app.

4. Billing & CRM

Three services sit behind your account rather than in front of it. You never configure them, but it is worth knowing they are there.

  • Stripe - subscriptions, payment methods, and invoices
  • HubSpot - the customer record our team works from
  • Rewardful - referral attribution for the affiliate programme

What each one receives, and why, is set out in the privacy policy.

5. Developer API

Need something custom? OppScope exposes a REST API over the same objects the app uses, so you can pull products, cost predictions, transactions, and creator data into your own tools.

Authentication is a token in the X-OPPS-TOKEN header. Request one by posting your username and password once, then reuse the token until it expires; tokens can be terminated from your account at any time. Each module decides for itself whether it is reachable this way, so the API surface is deliberately narrower than the app.

// List products

const res = await fetch(
  "https://oppscope.com/rest/dbo/products",
  {
    headers: {
      "X-OPPS-TOKEN": TOKEN,
    },
  }
);

const { status, data } = await res.json();

6. Request an Integration

Our integrations roadmap is shaped by operators. If you don't see your tool listed, request a connector and we'll let you know when it ships.