Skip to main content
DrapierDrapier

Getting Started

Start integrating with Drapier performance platform in minutes.

Drapier is a luxury fashion performance platform connecting publishers with premium brands including Italist, HEWI London, and Verishop. Publishers earn commissions on every sale they drive.

What you can do

  • Monetize your audience — Earn commissions by linking to thousands of luxury fashion products.
  • Access product feeds — Pull real-time inventory in XML, CSV, or JSON format, refreshed every 4 hours.
  • Track performance — Monitor clicks, conversions, and earnings through the API or the publisher dashboard.
  • Deep link to any product — Generate tracked links to any product across all three brands.

Prerequisites

Before you begin, make sure you have:

  1. An active publisher accountApply here if you don't have one yet.
  2. An API key — Available from the Settings page in your publisher dashboard once approved.

Quick start

1. Get your API key

Log in to the publisher dashboard and navigate to Settings → API Keys. Copy the key that starts with sk_live_.

2. Make your first API call

Verify your credentials by fetching your publisher profile:

curl -H "Authorization: Bearer sk_live_abc123..." \
  https://api.drapier.io/api/v1/publishers/me

A successful response returns your publisher details with a 200 status.

Create a tracked link to any product:

curl -X POST \
  -H "Authorization: Bearer sk_live_abc123..." \
  -H "Content-Type: application/json" \
  -d '{"productUrl": "https://italist.com/us/women/bags/handbags/prada-galleria-saffiano-leather-bag/12345"}' \
  https://api.drapier.io/api/v1/publishers/me/deep-link

The response includes a tracking URL you can place on your site. When a user clicks through and purchases, the sale is attributed to you.

4. Set up a product feed

Pull the full product catalog for your integration:

https://api.drapier.io/api/v1/feeds/{publisherId}/products.json?key={apiKey}

Feeds are available in XML (Google Product Feed), CSV, and JSON. See Product Feeds for details on filtering and field mapping.

Next steps

  • Authentication — Understand API key usage, rate limits, and security best practices.
  • Install Tracking — Add the attribution script to your Shopify or non-Shopify storefront.
  • First Integration — Walk through a complete end-to-end integration with full request and response examples.
  • How Tracking Works — Learn how clicks, attribution, and commissions fit together.

On this page