Documentation Index
Fetch the complete documentation index at: https://docs.abconvert.io/llms.txt
Use this file to discover all available pages before exploring further.
Preview — this page is an early draft. We’re still verifying the API reference against the current endpoints. Fields, response shapes, and examples may change before this section is marked stable. Follow PRO-1459 or ask in
#abconvert-dev if you’re integrating against this today.Session endpoints — Shopify OAuth
All session endpoints require a valid Shopify session. When a merchant installs ABConvert from the Shopify App Store, Shopify and the ABConvert backend exchange OAuth tokens automatically. From that point on, every request made from inside the ABConvert admin panel carries the session credentials Shopify requires. You do not need to manage OAuth tokens manually. If you are building a custom integration that calls session endpoints server-side, contact ABConvert support to discuss partner access options.How session authentication works
- Merchant installs ABConvert via the Shopify App Store.
- Shopify initiates the OAuth flow and issues a permanent access token.
- ABConvert stores the token and attaches it to all subsequent Shopify Admin API calls.
- Your browser sessions to the ABConvert admin panel are validated against this installation.
Example session request
Requests from the admin panel automatically include the required Shopify session headers:The
Authorization header value is managed by the ABConvert app. If you are testing session endpoints directly, you must obtain a valid session token from an active app installation.Public endpoints — no authentication
Public endpoints are intentionally unauthenticated. They are called from visitor browsers — by the ABConvert tracking script, the Web Pixel extension, or your own storefront JavaScript — and must be reachable without credentials. These endpoints accept ashop query parameter to identify your store, but this parameter is not a security mechanism. It simply routes the request to the correct store’s data.
Example public request
Admin tool header — x-api-key
A small number of administrative endpoints (such as GET /api/enable-script and POST /api/get-order) require an internal API key passed as a request header. This key is used by ABConvert’s own operational tooling and is not intended for merchant use.
Summary
| Endpoint category | Authentication method | Who calls it |
|---|---|---|
| Session endpoints | Shopify OAuth (handled automatically by the app) | ABConvert admin panel, server-side integrations |
| Public endpoints | None required | Storefront scripts, Web Pixel, custom integrations |
| Admin tool endpoints | x-api-key header | ABConvert internal tooling |