For the complete documentation index, see llms.txt. This page is also available as Markdown.

[LEGACY] Public API Reference

The Rest API allows you to build a highly custom paid-membership program on your Shopify storefront.

NOTE: With the release of Public API v2, Public API v1 will be sunset in May of 2024!

Find the v2 reference here.

Authentication

Using API Key in Requests

Include your API key as an X-Inveterate-Api-Key header on all API endpoint requests.

Requirements

All API requests utilize https://public.inveterateapi.com/ as the base URL.

Example Get Request

curl -X GET "https://public.inveterateapi.com/merchant"
-H "X-Inveterate-Api-Key: {api_key}"
const merchant = await fetch('https://public.inveterateapi.com/merchant', {
  headers: {
    'Content-Type': 'application/json',
    'X-Inveterate-Api-Key': '{api_key}',
  },
  method: 'GET',
}).then(data => data.json());

Reference Shortcuts

Benefits APICampaigns APICustomers APIMerchant APIWebhooksFree tiers API

Last updated

Was this helpful?