Levanta’s Shopify Integration for Creators
Last updated: April 14, 2026
Integrating with Levanta’s Shopify Network
This guide walks you through how to:
Retrieve a list of all Shopify brands or products available in Levanta
Generate affiliate links for each brand or product
Passing in custom tracking parameters
Track conversions and performance
Retrieve Shopify Brands or Products
Levanta supports multiple marketplaces.
To work specifically with Shopify brands, filter by:
marketplace = shopify.com
You can retrieve either:
Brand-level data
Product-level data
Option A: Get Shopify Brands
Endpoint
GET https://app.levanta.io/api/creator/v2/preview/brandsDocs
https://api-docs.levanta.io/v2/creator/brands/list-brands
Required Filter
marketplace = shopify.com
Use this when you want to:
Display brand-level offers
Create brand-level affiliate links
Show a storefront view of a merchant
Allow users to browse all products from a brand
Option B: Get Shopify Products
Endpoint
GET https://app.levanta.io/api/creator/v2/preview/products
Docs
https://api-docs.levanta.io/v2/creator/products/list-products
Required Filter
marketplace = shopify.com
Use this when you want to:
Display specific SKUs
Show pricing and product metadata
Create direct product affiliate links
Build comparison or product grid pages
Create Affiliate Links
You can generate affiliate links in two ways:
Dynamically (construct the URL on-the-fly)
Proactively via API
Option A: Create Links Dynamically
Once you have:
creator_teamIDbrand_id(optional)
product_id
You can generate affiliate links using Levanta’s standard structure.
Brand Link (no product specified)
<https://lvnta.com/shop/{creator_teamID}/{brand_id}>
Example
<https://lvnta.com/shop/7002375dcb78489a8c367ff7470ec110/b1fd66c2063141f9be3c6c3a0fe21a6d>
Use this when linking to a brand homepage.
Product Link (includes product ID)
<https://lvnta.com/shop/{creator_teamID}/{brand_id}?pid={product_id}>
Example
<https://lvnta.com/shop/7002375dcb78489a8c367ff7470ec110/b1fd66c2063141f9be3c6c3a0fe21a6d?pid=49338041368895>
Use this for direct product linking.
Deep Link (link to any page on the brand’s domain)
You can link to any URL on the brand’s domain using the u= parameter.
<https://lvnta.com/shop/{creator_teamID}/{brand_id}?u={URL_ENCODED_DESTINATION}>
Example
<https://lvnta.com/shop/7002375dcb78489a8c367ff7470ec110/b1fd66c2063141f9be3c6c3a0fe21a6d?u=https%3A%2F%2Fella-bella.com%2Fcollections%2Fnew-arrivals>
⚠ The destination URL must be properly URL-encoded.
Common Deep Link Use Cases:
Collection pages
Blog content
Landing pages
Campaign-specific URLs
Option B: Create Links via API
If you prefer not to construct URLs manually, you can generate product links via API.
Endpoint
POST https://app.levanta.io/api/creator/v2/preview/links
Docs
https://api-docs.levanta.io/v2/creator/links/create-product-link
This endpoint returns a fully formed affiliate link.
Use API link creation when:
You want centralized link management
You prefer backend-controlled link generation
You want to avoid handling link logic client-side
Add Custom Tracking Parameters
Levanta supports optional tracking parameters that allow you to pass your own identifiers.
Supported Parameters
clickidsubid1subid2
These values will be returned in conversion reporting.
Example with Custom Tracking
<https://lvnta.com/shop/{creator_teamID}/{brand_id}?pid={product_id}&clickid={clickid}&subid1={subid1}&subid2={subid2}>
Common Use Cases
Pass internal click IDs
Track traffic placement (homepage, email, article, social media channel, etc.)
Attribute conversions back to your internal system with more granularity
Differentiate campaigns
Track article performance (include articleID)
💡 Highly recommended if you run paid traffic, distribute content through channels outside of your website (via social or newsletters), or operate at scale.
Track Conversions & Performance
You can retrieve all conversions, including:
Order status (pending, approved, rejected)
Commission amounts
Associated clickid/subid values
Brand and product data
Conversion timestamps
Conversions Endpoint
GET /v2/preview/reports/conversionsDocs
https://api-docs.levanta.io/v2/creator/reports/list-conversions
Use this endpoint to:
Reconcile commissions
Build internal dashboards
Attribute revenue back to traffic sources
Monitor approval/rejection rates
Automate reporting
End-to-End Integration Flow
Retrieve Shopify brands or products (
marketplace = shopify.com)Generate affiliate links (dynamic or API)
Append tracking parameters (recommended)
Use the conversions endpoint to monitor performance
If you'd like, I can also create:
A more technical version with sample request/response payloads
A simplified version for non-technical affiliates
A version with diagrams showing data flow
Or a Levanta-branded public developer page layout
Just tell me the audience (devs vs media partners vs large publishers).
Support
If you have questions about Levanta for Shopify or need help getting started, please contact our team at cs@levanta.io.