--- title: "Public API" slug: "public-api" updated: 2026-06-23T13:07:28Z published: 2026-06-23T13:07:28Z canonical: "help.frisbii.com/public-api" --- > ## Documentation Index > Fetch the complete documentation index at: https://help.frisbii.com/llms.txt > Use this file to discover all available pages before exploring further. # Public API The Frisbii Media Public API is the main server-to-server REST API. It covers customer management, checkout, access rights, subscriptions, order imports, payment methods, vouchers, app store purchases, and more. Interactive documentation (Swagger UI) is available at: | Environment | URL | | --- | --- | | **Live** | [https://api.frisbii-media.com](https://api.frisbii-media.com/) | | **Stage** | [https://api.frisbii-media-stage.com](https://api.frisbii-media-stage.com/) | Use the stage Swagger UI to try out endpoints during development — all calls against the stage environment use test data and test payments only. --- ## Authentication Every request to the Public API requires a signed JWT sent as the `X-plenigo-token` request header. See [Authentication & API Tokens](/frisbii-media/docs/authentication-api-tokens) for how to generate this token. --- ## Base URLs | Environment | Base URL | | --- | --- | | **Live** | `https://api.frisbii-media.com/api/v3.0/` | | **Stage** | `https://api.frisbii-media-stage.com/api/v3.0/` | --- ## Key endpoint groups | Group | What it covers | | --- | --- | | **Customers** | Create, retrieve, and update customer records | | **Checkout** | `preparePurchase`, `buyWithVoucher`, order imports | | **Access Rights** | `hasAccess` — check whether a customer can access content | | **Subscriptions** | List, cancel, undo cancellation, multi-user, cross-company | | **Addresses** | Create and manage delivery and invoice addresses | | **Payment Methods** | Bank accounts, credit cards | | **Vouchers** | Validate and redeem voucher codes | | **Sessions** | Create sessions, create and validate transfer tokens | | **App Stores** | Apple and Google in-app purchase endpoints | | **Products / Offers** | Read offer and price issue data | | **Order Imports** | Import subscriptions from external systems | --- ## Related - [Customer API](/frisbii-media/docs/customer-api) — session-authenticated API for customer-facing operations - [Authentication & API Tokens](/frisbii-media/docs/authentication-api-tokens) - [Setting Up the HTTP Client](/frisbii-media/docs/hhtp-client-setup)